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