blob: f4bec43389a151f86e0c09c5fd100a860598b580 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
import "dart:async" as asy;
class D<T extends core::Object> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
class E<T extends core::Object> extends self::D<self::E::T> {
synthetic constructor •() void
: super self::D::•()
;
}
class B<T extends core::Object> extends core::Object {
field self::D<self::B::T> x = null;
synthetic constructor •() void
: super core::Object::•()
;
}
class C<U extends core::Object> extends self::B<asy::Future<self::C::U>> {
synthetic constructor •() void
: super self::B::•()
;
get x() self::E<asy::Future<self::C::U>>
return null;
set x(core::Object x) void {}
method g() void {
super.{self::B::x} = self::f<dynamic>();
}
}
static method f<T extends core::Object>() self::f::T
return null;
static method main() dynamic {}