| Index: pkg/front_end/testcases/inference/local_constructor_from_arguments.dart
|
| diff --git a/pkg/front_end/testcases/inference/local_constructor_from_arguments.dart b/pkg/front_end/testcases/inference/local_constructor_from_arguments.dart
|
| index 18c6dd11b60720740ae4b4e37cce64d3288faef9..6852b6273d3e83a9c0a640f59a2392a836877777 100644
|
| --- a/pkg/front_end/testcases/inference/local_constructor_from_arguments.dart
|
| +++ b/pkg/front_end/testcases/inference/local_constructor_from_arguments.dart
|
| @@ -11,13 +11,13 @@ class C<T> {
|
| }
|
|
|
| main() {
|
| - var /*@type=C<int>*/ x = /*@typeArgs=int*/ new C(42);
|
| + var /*@type=C<int>*/ x = new /*@typeArgs=int*/ C(42);
|
|
|
| num y;
|
| - C<int> c_int = /*@typeArgs=int*/ new C(
|
| + C<int> c_int = new /*@typeArgs=int*/ C(
|
| /*info:DOWN_CAST_IMPLICIT*/ /*@promotedType=none*/ y);
|
|
|
| - C<num> c_num = /*@typeArgs=num*/ new C(123);
|
| + C<num> c_num = new /*@typeArgs=num*/ C(123);
|
|
|
| // Don't infer from explicit dynamic.
|
| var /*@type=C<dynamic>*/ c_dynamic = new C<dynamic>(42);
|
|
|