blob: 4195710146fec55121b9c299a7ec3511be477dcd [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B extends core::Object {
synthetic constructor •() self::B
;
get x() core::int
;
set x(core::int value) void
;
get y() core::int
;
set y(core::int value) void
;
}
abstract class I<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() self::I<self::I::T>
;
abstract get x() self::I::T;
abstract set x(self::I::T value) void;
abstract get y() core::Object;
abstract set y(covariant core::Object value) void;
}
class M extends core::Object {
synthetic constructor •() self::M
;
get x() core::int
;
set x(core::int value) void
;
get y() core::int
;
set y(core::int value) void
;
}
class C = self::B with self::M implements self::I<core::int> {
synthetic constructor •() self::C
: super self::B::•()
;
}
static method expectTypeError(() void callback) void
;
static method expect(core::Object value, core::Object expected) void
;
static method test(self::I<core::Object> i) void
;
static method main() void
;