blob: 40a93aba1da6cb01accbc4d6447af675ac5a73f6 [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 *(self::C* other) core::bool*
return true;
}
static field self::C* c = new self::C::•();
static field dynamic x = self::c.*(self::c);
static method main() dynamic {
self::c;
self::x;
}