blob: 43f51a29319b221d0483a5f46d2bee3b79f6fd59 [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::Object y) void;
}
class C extends self::B implements self::I<core::int> {
synthetic constructor •() void
: super self::B::•()
;
}
static method main() void {}