| Index: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_3.dart
|
| diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_3.dart b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_3.dart
|
| index 389f9f4329bc91cac6e01a0f513a49caf57a5af6..3467d7576af757ed17019522caffcd60780545bf 100644
|
| --- a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_3.dart
|
| +++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_3.dart
|
| @@ -11,8 +11,8 @@ class A<T> {
|
| }
|
|
|
| class B implements A<int> {
|
| - get x => 3;
|
| - get w => /*error:RETURN_OF_INVALID_TYPE*/ "hello";
|
| + get /*@topType=int*/ x => 3;
|
| + get /*@topType=int*/ w => /*error:RETURN_OF_INVALID_TYPE*/ "hello";
|
| }
|
|
|
| foo() {
|
|
|