| Index: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart
|
| diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart
|
| index e5f67e26455331dd17c57dedbe8a4b2422ef9f09..7dbc105510b5b742134d08fff08477b38995bd79 100644
|
| --- a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart
|
| +++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart
|
| @@ -26,7 +26,7 @@ class B<E> extends A<E> implements M {
|
| }
|
|
|
| foo() {
|
| - int y = /*error:INVALID_ASSIGNMENT*/ /*@typeArgs=dynamic*/ new B()
|
| + int y = /*error:INVALID_ASSIGNMENT*/ new /*@typeArgs=dynamic*/ B()
|
| .m(null, null);
|
| - String z = /*@typeArgs=dynamic*/ new B().m(null, null);
|
| + String z = new /*@typeArgs=dynamic*/ B().m(null, null);
|
| }
|
|
|