blob: 28beda42df76cbab7a53a44aee670dc2177a439c [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
class B extends self::A {
synthetic constructor •() void
: super self::A::•()
;
}
class C extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
set x(self::A value) void {}
get y() self::A
return null;
}
class D extends self::C {
synthetic constructor •() void
: super self::C::•()
;
set x(core::Object value) void {}
get y() self::B
return null;
}
class E extends self::C {
synthetic constructor •() void
: super self::C::•()
;
set x(self::B value) void {}
get y() core::Object
return null;
}
static method main() dynamic {}