| Index: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.strong.expect b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b65a43ad05790f14fde57b420b703c6354ed9fef
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.strong.expect
|
| @@ -0,0 +1,25 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class A<T extends core::Object> extends core::Object {
|
| + field self::A::T x = null;
|
| + constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +class B<E extends core::Object> extends self::A<self::B::E> {
|
| + field self::B::E y = null;
|
| + constructor •() → void
|
| + : super self::A::•()
|
| + ;
|
| + get x() → dynamic
|
| + return this.y;
|
| +}
|
| +static method foo() → dynamic {
|
| + core::int y = new self::B::•<core::String>().x;
|
| + core::String z = new self::B::•<core::String>().x;
|
| +}
|
| +static method main() → dynamic {
|
| + self::foo();
|
| +}
|
|
|