blob: 4e31b004064277d748a5c3d644e3927de025e607 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method f(covariant core::int x, core::int y) void {}
}
abstract class I extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
abstract method f(core::int x, core::Object y) void;
}
class C extends self::B implements self::I {
synthetic constructor •() void
: super self::B::•()
;
abstract forwarding-stub method f(covariant core::int x, core::Object y) void;
}
static method main() void {}