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