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