| 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 62baee35a5f1efeb4dee823ebf0ba5d87a39aefb..18c6dd11b60720740ae4b4e37cce64d3288faef9 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 = /*@type=C<int>*/ new C(42);
|
| + var /*@type=C<int>*/ x = /*@typeArgs=int*/ new C(42);
|
|
|
| num y;
|
| - C<int> c_int = /*@type=C<int>*/ new C(
|
| + C<int> c_int = /*@typeArgs=int*/ new C(
|
| /*info:DOWN_CAST_IMPLICIT*/ /*@promotedType=none*/ y);
|
|
|
| - C<num> c_num = /*@type=C<num>*/ new C(123);
|
| + C<num> c_num = /*@typeArgs=num*/ new C(123);
|
|
|
| // Don't infer from explicit dynamic.
|
| var /*@type=C<dynamic>*/ c_dynamic = new C<dynamic>(42);
|
|
|