Chromium Code Reviews| Index: pkg/front_end/testcases/inference/block_bodied_lambdas_nested_lambdas.dart.direct.expect |
| diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_nested_lambdas.dart.direct.expect b/pkg/front_end/testcases/inference/block_bodied_lambdas_nested_lambdas.dart.direct.expect |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c43542340ce32657dcd6bd27c9c512346e7b3395 |
| --- /dev/null |
| +++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_nested_lambdas.dart.direct.expect |
| @@ -0,0 +1,11 @@ |
| +library test; |
| +import self as self; |
| +import "dart:core" as core; |
| + |
| +static method main() → dynamic { |
| + dynamic f = () → dynamic { |
| + return (core::int x) → dynamic { |
| + return 2.0.*(x); |
| + }; |
| + }; |
| +} |