blob: aeecf2cbb65517eabe05ddeda436a8dccaa540f5 [file] [log] [blame]
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 {}