blob: 2c5a6c8dde87309884dbe1837dc9938cbeab7c1b [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::•();
core::bool x = c.{self::C::[]}(0){(core::int) core::bool};
}