I used angular in version 2.2.3 and always it worked good. When i upgraded to version 2.4.4 one error has ocurred (The error in picture below).
After hours searching what was happening i found that problem is because not is more possible use functions () => ExampleModule in attribute loadChildren of Router.
For use this i needed changed loadchildren: () => ExampleModule to loadchildren: 'path/example.module#ExampleModule', and angular worked as expected.
Now i want know if the function type () => is not more supported to use or this happened because i created a error ?
