blob: 7cb49e6b097c595dcf43d9b2e0be5765b4e0190e [file] [log] [blame]
library test /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
abstract class I1 extends core::Object {
synthetic constructor •() self::I1
;
abstract method f(core::int i) void;
}
abstract class I2 extends core::Object {
synthetic constructor •() self::I2
;
abstract method f(core::Object o) void;
}
abstract class C extends core::Object implements self::I1, self::I2 {
synthetic constructor •() self::C
;
abstract member-signature method f(core::Object o) void; -> self::I2::f
}
class D extends self::C {
synthetic constructor •() self::D
;
method f(core::Object o) void
;
}
abstract class E extends core::Object implements self::I2, self::I1 {
synthetic constructor •() self::E
;
}
class F extends self::E {
synthetic constructor •() self::F
;
method f(core::Object o) void
;
}
static method g1(self::C c) void
;
static method g2(self::E e) void
;
static method main() dynamic
;