blob: d1bfed5deb7a95dd6700d90d8406227b4366c670 [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 unary-() 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.unary-();
static method main() dynamic {
self::c;
}