blob: b2f02396c53f1fca167141ea94131d0e6754d58d [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B<T extends core::Object> 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 {}