| Index: pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
|
| diff --git a/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart b/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
|
| index 330624d2ccfceb68de09317da1d4109215e2956e..4d1cef2a1168f1e16124e434c144f43a073cfc4d 100644
|
| --- a/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
|
| +++ b/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
|
| @@ -8,3 +8,7 @@ library test;
|
| int f(int x) => null;
|
| String g(int x) => null;
|
| var /*@topType=List<(int) -> Object>*/ v = /*@typeArgs=(int) -> Object*/ [f, g];
|
| +
|
| +main() {
|
| + v;
|
| +}
|
|
|