blob: 3d7052a64da9f0c502721b2d6f13684ee62598d1 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class I extends core::Object {
constructor •() void
: super core::Object::•()
;
operator *(self::C other) core::bool
return true;
}
abstract class C extends core::Object implements self::I {
constructor •() void
: super core::Object::•()
;
}
static field self::C c;
static field core::bool x = self::c.*(self::c);
static method main() dynamic {
self::c;
}