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