blob: 9779f6999724ae2712127e191d775704951e4d5a [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
abstract class I<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() self::I<self::I::T>
;
abstract method f1(generic-covariant-impl self::I::T x) void;
abstract method f2(generic-covariant-impl self::I::T x) void;
}
class C<U extends core::Object = dynamic> extends core::Object implements self::I<core::int> {
synthetic constructor •() self::C<self::C::U>
;
method f1(generic-covariant-impl core::int x) void
;
method f2(generic-covariant-impl core::int x, [generic-covariant-impl self::C::U y]) void
;
}
class D<U extends core::Object = dynamic> extends self::C<self::D::U> {
synthetic constructor •() self::D<self::D::U>
;
method f1(generic-covariant-impl core::int x) void
;
method f2(generic-covariant-impl core::int x, [generic-covariant-impl self::D::U y]) void
;
}
static method g1(self::C<core::num> c) void
;
static method g2(self::I<core::num> i) void
;
static method g3(self::C<core::num> c) void
;
static method g4(self::D<core::num> d) void
;
static method g5(self::D<core::num> d) void
;
static method test() void
;
static method main() void
;