blob: e669dba16b03cf9d1a81fb05c336fa30d6642745 [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 {
core::int* x = super.{self::C::f}();
}
}
static method main() dynamic {}