blob: 3775420448b9da8b2c86d7fe3551a64f4504fa29 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
abstract class I<T extends core::Object> extends core::Object {
default constructor •() void
;
abstract method f1(self::I::T x) void;
abstract method f2(self::I::T x) void;
}
class C<U extends core::Object> extends core::Object implements self::I<core::int> {
default constructor •() void
;
method f1(core::int x) void
;
method f2(core::int x, [self::C::U y]) void
;
}
static method g1(self::C<core::num> c) void
;
static method g2(self::I<core::num> i) void
;
static method g3(self::C<core::num> c) void
;
static method test() void
;
static method main() void
;