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