blob: dae4331a19a5bb57c4afd37b9bc236288e05c61e [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 as{TypeError} core::bool*) {
}
throw "no exception";
}
on core::TypeError* catch(no-exception-var) {
}
}