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