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