| Index: pkg/front_end/testcases/inference/constructors_downwards_with_constraint.dart
|
| diff --git a/pkg/front_end/testcases/inference/constructors_downwards_with_constraint.dart b/pkg/front_end/testcases/inference/constructors_downwards_with_constraint.dart
|
| index d3c4241a75653e1d19bc4a46c6cebafd13ab7380..a2fdcfcf9fd37766021627fbbc4b24bdc3361598 100644
|
| --- a/pkg/front_end/testcases/inference/constructors_downwards_with_constraint.dart
|
| +++ b/pkg/front_end/testcases/inference/constructors_downwards_with_constraint.dart
|
| @@ -12,5 +12,5 @@ class B extends A {}
|
| class Foo<T extends A> {}
|
|
|
| void main() {
|
| - Foo<B> foo = /*@typeArgs=B*/ new Foo();
|
| + Foo<B> foo = new /*@typeArgs=B*/ Foo();
|
| }
|
|
|