| library test /*isNonNullableByDefault*/; |
| import self as self; |
| import "dart:core" as core; |
| |
| abstract class A extends core::Object { |
| synthetic constructor •() → self::A |
| ; |
| abstract get x() → core::int?; |
| } |
| class B extends core::Object { |
| synthetic constructor •() → self::B |
| ; |
| get x() → core::int? |
| ; |
| } |
| class C extends self::A { |
| field core::int? x; |
| synthetic constructor •() → self::C |
| ; |
| } |
| class D extends self::B { |
| field core::int? x; |
| synthetic constructor •() → self::D |
| ; |
| } |
| class E extends core::Object implements self::A { |
| field core::int? x; |
| synthetic constructor •() → self::E |
| ; |
| } |
| class F extends core::Object implements self::B { |
| field core::int? x; |
| synthetic constructor •() → self::F |
| ; |
| } |
| abstract class _G&Object&B = core::Object with self::B /*isAnonymousMixin,hasConstConstructor*/ { |
| const synthetic constructor •() → self::_G&Object&B |
| : super core::Object::•() |
| ; |
| mixin-super-stub get x() → core::int? |
| return super.{self::B::x}; |
| } |
| class G extends self::_G&Object&B { |
| field core::int? x; |
| synthetic constructor •() → self::G |
| ; |
| } |
| static method main() → dynamic |
| ; |