| Index: pkg/front_end/testcases/inference/generic_functions_return_typedef.dart
|
| diff --git a/pkg/front_end/testcases/inference/generic_functions_return_typedef.dart b/pkg/front_end/testcases/inference/generic_functions_return_typedef.dart
|
| index 3b82a75454828fdb456dc2a14f6ae238ed00aeb5..501554d0b93ca356914084900be442ec6069204d 100644
|
| --- a/pkg/front_end/testcases/inference/generic_functions_return_typedef.dart
|
| +++ b/pkg/front_end/testcases/inference/generic_functions_return_typedef.dart
|
| @@ -9,8 +9,8 @@ typedef void ToValue<T>(T value);
|
|
|
| main() {
|
| ToValue<T> f<T>(T x) => null;
|
| - var /*@type=ToValue<int>(int value) → void*/ x = f<int>(42);
|
| - var /*@type=ToValue<int>(int value) → void*/ y = f(42);
|
| + var /*@type=ToValue<int>(int) -> void*/ x = f<int>(42);
|
| + var /*@type=ToValue<int>(int) -> void*/ y = f(42);
|
| ToValue<int> takesInt = /*@promotedType=none*/ x;
|
| takesInt = /*@promotedType=none*/ y;
|
| }
|
|
|