blob: 4b976d771b94fcc5b6dd6b1e7a9b962e05e34262 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method main() void {
core::Object o = 1;
try {
for (core::int i = 0; o; i = i.+(1)) {
}
throw "no exception";
}
on core::TypeError catch(no-exception-var) {
}
}