| Index: pkg/front_end/testcases/inference/downwards_inference_on_function_of_t_using_the_t.dart
|
| diff --git a/pkg/front_end/testcases/inference/downwards_inference_on_function_of_t_using_the_t.dart b/pkg/front_end/testcases/inference/downwards_inference_on_function_of_t_using_the_t.dart
|
| index 66d1bb1ccfb50d5fc7ee1fbb4d18ed4f565513f8..acba6de9ceb065736e5bf13cba01dc3483d3b509 100644
|
| --- a/pkg/front_end/testcases/inference/downwards_inference_on_function_of_t_using_the_t.dart
|
| +++ b/pkg/front_end/testcases/inference/downwards_inference_on_function_of_t_using_the_t.dart
|
| @@ -8,12 +8,12 @@ library test;
|
| void main() {
|
| {
|
| T f<T>(T x) => null;
|
| - var /*@type=f(T) -> T*/ v1 = f;
|
| + var /*@type=(T) -> T*/ v1 = f;
|
| v1 = /*@returnType=S*/ <S>(/*@type=S*/ x) => /*@promotedType=none*/ x;
|
| }
|
| {
|
| List<T> f<T>(T x) => null;
|
| - var /*@type=f(T) -> List<T>*/ v2 = f;
|
| + var /*@type=(T) -> List<T>*/ v2 = f;
|
| v2 = /*@returnType=List<S>*/ <S>(/*@type=S*/ x) => /*@typeArgs=S*/ [
|
| /*@promotedType=none*/ x
|
| ];
|
|
|