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