blob: 9a8b19e760cf15cf2c311ec4786cadbe61160e4d [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class I extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method g() core::bool
return true;
}
abstract class C extends core::Object implements self::I {
synthetic constructor •() void
: super core::Object::•()
;
}
static field dynamic x = self::f().g();
static method f() self::C
return null;
static method main() dynamic {}