| library test /*isNonNullableByDefault*/; |
| import self as self; |
| import "dart:core" as core; |
| import "infer_types_on_generic_instantiations_in_library_cycle_a.dart" as inf; |
| |
| import "org-dartlang-testcase:///infer_types_on_generic_instantiations_in_library_cycle_a.dart"; |
| |
| abstract class A<E extends core::Object? = dynamic> extends core::Object implements inf::I<self::A::E%> { |
| final field self::A::E% value; |
| synthetic constructor •() → self::A<self::A::E%> |
| ; |
| } |
| abstract class M extends core::Object { |
| final field core::int y; |
| synthetic constructor •() → self::M |
| ; |
| } |
| class B<E extends core::Object? = dynamic> extends self::A<self::B::E%> implements self::M { |
| synthetic constructor •() → self::B<self::B::E%> |
| ; |
| get y() → core::int |
| ; |
| method m(dynamic a, (dynamic, core::int) → dynamic f) → self::A<self::B::E%> |
| ; |
| } |
| static method foo() → dynamic |
| ; |
| static method main() → dynamic |
| ; |
| |
| library /*isNonNullableByDefault*/; |
| import self as inf; |
| import "dart:core" as core; |
| import "infer_types_on_generic_instantiations_in_library_cycle.dart" as self; |
| |
| import "org-dartlang-testcase:///infer_types_on_generic_instantiations_in_library_cycle.dart"; |
| |
| abstract class I<E extends core::Object? = dynamic> extends core::Object { |
| synthetic constructor •() → inf::I<inf::I::E%> |
| ; |
| abstract method m(dynamic a, (dynamic, core::int) → core::String f) → self::A<inf::I::E%>; |
| } |
| static method main() → dynamic |
| ; |