| library; | |
| import self as self; | |
| import "dart:core" as core; | |
| static method test() → void { | |
| core::List<dynamic> l = <dynamic>[1, "hello"]; | |
| core::List<core::String> l2 = l.map((dynamic element) → dynamic => element.toString()).toList(); | |
| } | |
| static method main() → void {} |