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