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