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