| library test; | |
| import self as self; | |
| import "dart:core" as core; | |
| static method test1() → dynamic { | |
| core::List<core::int> o; | |
| dynamic y = o.map((dynamic x) → dynamic { | |
| return x.+(1); | |
| }); | |
| core::Iterable<core::int> z = y; | |
| } | |
| static method main() → dynamic {} |