blob: e0d10e2d0e1a3ce5a9af8d0f1409f68bc5c6276b [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method test(core::List<core::num> nums) invalid-type {
for (dynamic x in nums) {
if(x is core::int) {
dynamic y = x{core::int};
}
}
}
static method main() dynamic {}