blob: 5b69334be274d642d871fb3fb696f4e16b52e918 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
typedef F<T extends core::Object = dynamic> = (T) dynamic;
class C<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() self::C<self::C::T>
;
method f(self::C::T x) void
;
method g1(self::C::T x) void
;
method g2(self::C::T x) void
;
method g3(self::C<self::C::T> c, self::C::T x) void
;
method g4() (self::C::T) dynamic
;
}
class D extends self::C<core::int> {
synthetic constructor •() self::D
;
}
class E extends self::C<core::num> {
synthetic constructor •() self::E
;
method f(covariant core::int x) void
;
}
static method test() dynamic
;
static method main() dynamic
;