blob: f734ce5959dab37c058e1862b28b1309d22c2a22 [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) {
}
}