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