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