blob: ac4945f1246913beaf87c11132a647a172b3f823 [file] [log] [blame]
library test /*isNonNullableByDefault*/;
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<T extends core::Object? = dynamic> extends core::Object {
synthetic constructor •() self::I<self::I::T%>
: super core::Object::•()
;
abstract method f(covariant-by-class self::I::T% x, core::int y) void;
}
class C extends self::B implements self::I<core::int> {
synthetic constructor •() self::C
: super self::B::•()
;
forwarding-stub method f(covariant-by-class core::int x, core::int y) void
return super.{self::B::f}(x, y);
}
static method main() void {}