| Index: pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
|
| diff --git a/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart b/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
|
| index 1cd7e362f2254f217c548e1acef5fb1814e83d28..3598b65bca06eccb203f11ea0dc52d5dcfe43690 100644
|
| --- a/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
|
| +++ b/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
|
| @@ -9,7 +9,7 @@ List<String> getListOfString() => const <String>[];
|
|
|
| void foo() {
|
| List myList = getListOfString();
|
| - myList. /*@typeArgs=int*/ /*@target=List::map*/ map(
|
| + myList. /*@typeArgs=int*/ /*@target=Iterable::map*/ map(
|
| /*@returnType=int*/ (/*@type=dynamic*/ type) => 42);
|
| }
|
|
|
|
|