| Index: pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_sync.dart
|
| diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_sync.dart b/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_sync.dart
|
| index 73befb1ab4929d626bedb33e391fa0254b008201..f427fbd614643eba4f50d0387bb61f08e4eff668 100644
|
| --- a/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_sync.dart
|
| +++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_sync.dart
|
| @@ -9,7 +9,7 @@ var /*@topType=dynamic*/ h = null;
|
| void foo(int f(Object _)) {}
|
|
|
| main() {
|
| - var /*@type=(Object x) → Null*/ f = /*@returnType=Null*/ (Object x) {
|
| + var /*@type=(Object) -> Null*/ f = /*@returnType=Null*/ (Object x) {
|
| return null;
|
| };
|
| String y = /*@promotedType=none*/ f(42);
|
|
|