blob: bd1c5ab9ad78e7a93b60efcac33ba4e6be4c3c16 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B extends core::Object {
synthetic constructor •() self::B
;
method f(core::int x) void
;
}
abstract class I<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() self::I<self::I::T>
;
abstract method f(generic-covariant-impl self::I::T x) void;
}
class C extends self::B implements self::I<core::int> {
synthetic constructor •() self::C
;
forwarding-stub method f(generic-covariant-impl core::int x) void
return super.{self::B::f}(x);
}
static method g1(self::C c) void
;
static method g2(self::I<core::num> i) void
;
static method test() void
;
static method main() void
;