blob: 2a6dd0b9c44b0a1539f6914eb917b40f01be4992 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
operator unary-() core::bool
return true;
}
static field self::C c = new self::C::•();
static field core::bool x = self::c.{self::C::unary-}();
static method main() dynamic {
self::c;
self::x;
}