blob: 146868d81e068176121a0ca26155f27dfd4efb28 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
operator [](core::int index) core::bool
return true;
}
static method main() dynamic {
self::C c = new self::C::•();
dynamic x = c.[](0);
}