blob: 0620b1b88711724f233dbae72e7a5f04abdbd4e6 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B<T extends core::Object> extends core::Object {
generic-covariant-impl generic-covariant-interface field self::B::T x = null;
synthetic constructor •() void
: super core::Object::•()
;
}
class C extends core::Object {
field core::num x = null;
synthetic constructor •() void
: super core::Object::•()
;
}
class D extends self::C implements self::B<core::num> {
synthetic constructor •() void
: super self::C::•()
;
forwarding-stub set x(generic-covariant-impl core::num _) void
return super.{self::C::x} = _;
}
static method main() void {}