blob: 2f675817517b1f836c23d1edc5d10570e4faf9d7 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method main() dynamic {
core::Object o = 1;
try {
while (o) {
}
throw "no exception";
}
on core::TypeError catch(no-exception-var) {
}
}