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