blob: 8edae6d055dee0ee2ac2c4f80c607c0866a6cb5f [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method test() void {
for (core::num x = 0; x.<(10); x = x.+(1)) {
if(x is core::int) {
dynamic y = x{core::int};
}
}
}
static method main() dynamic {}