blob: 083d2778fb22b6d4e2605545feee8a7afb078753 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B extends core::Object {
synthetic constructor •() self::B
: 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 •() self::I<self::I::T>
: super core::Object::•()
;
abstract method f(self::I::T x, core::Object y) void;
}
abstract class C extends self::B implements self::I<core::int> {
synthetic constructor •() self::C
: super self::B::•()
;
}
static method main() void {}