blob: 96ef81c9f20123d1eba38e8225a134a1a98e7ab9 [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::•()
;
method f() core::int
return 0;
}
class D extends self::C {
synthetic constructor •() self::D
: super self::C::•()
;
method g() void {
dynamic x = super.{self::C::f}();
}
}
static method main() dynamic {}