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