blob: 85d4169ac4578ba5796882b0156a5b9e7b90ac1e [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;
}
}
}
}
static method main() dynamic {}