| Index: pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart
|
| diff --git a/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart b/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart
|
| index d2d4f558bf0c2eae8b8f3d5e484facf4127bc036..5a870039ffeebfd4c5c278e8b5a56fc055109f21 100644
|
| --- a/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart
|
| +++ b/pkg/front_end/testcases/inference/generic_methods_downwards_inference_fold.dart
|
| @@ -7,11 +7,11 @@ library test;
|
|
|
| void main() {
|
| List<int> o;
|
| - int y = /*@promotedType=none*/ o.fold(
|
| + int y = /*@promotedType=none*/ o. /*@typeArgs=int*/ fold(
|
| 0,
|
| /*@returnType=int*/ (/*@type=int*/ x,
|
| /*@type=int*/ y) => /*@promotedType=none*/ x + /*@promotedType=none*/ y);
|
| - var /*@type=dynamic*/ z = /*@promotedType=none*/ o.fold(
|
| + var /*@type=dynamic*/ z = /*@promotedType=none*/ o. /*@typeArgs=dynamic*/ fold(
|
| 0,
|
| /*@returnType=dynamic*/ (/*@type=dynamic*/ x,
|
| /*@type=int*/ y) => /*info:DYNAMIC_INVOKE*/ /*@promotedType=none*/ x + /*@promotedType=none*/ y);
|
|
|