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