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