| Index: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.direct.expect
|
| diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.direct.expect b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.direct.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0848cb9a4437c70ea3f416a7235624e80beafd23
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_4.dart.direct.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;
|
| + default constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +class B<E extends core::Object> extends self::A<self::B::E> {
|
| + field self::B::E y = null;
|
| + default 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();
|
| +}
|
|
|