blob: ed5aa2822b9f54f71dc1c851c8815af0fc9e2d3a [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(core::int x, core::int y) void {}
}
abstract class I extends core::Object {
synthetic constructor •() self::I
: super core::Object::•()
;
abstract method f(covariant core::int x, core::Object y) void;
}
abstract class C extends self::B implements self::I {
synthetic constructor •() self::C
: super self::B::•()
;
forwarding-stub method f(covariant core::int x, core::Object y) void
return super.{self::B::f}(x, y);
}
static method main() void {}