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