blob: e60450ac044b7e4494d96e5eec861c6f1ea918fb [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) {
}
}