blob: 9e334f5709c35277610a5cadb1d97ae9429cdc4f [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
typedef F<T extends core::Object> = (T) void;
abstract class A<T extends core::Object> extends core::Object {
synthetic constructor •() void
;
abstract method f(self::A::T x, core::int y) void;
}
class B<T extends core::Object> extends core::Object implements self::A<(self::B::T) void> {
synthetic constructor •() void
;
method f((self::B::T) void x, core::int y) void
;
}
abstract class I<T extends core::Object> extends core::Object implements self::A<(self::I::T) void> {
synthetic constructor •() void
;
abstract method f((self::I::T) void x, core::Object y) void;
}
class C<T extends core::Object> extends self::B<(self::C::T) void> implements self::I<(self::C::T) void> {
synthetic constructor •() void
;
}
static method main() void
;