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