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