Chromium Code Reviews| Index: tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart |
| diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart |
| index 7d997bb13d61b278a32b4cb0cd418fe483ca7bd9..3e86858dec7359a91d0ee6578c8214ff0d4ed497 100644 |
| --- a/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart |
| +++ b/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart |
| @@ -133,6 +133,10 @@ main() { |
| x = testAsGeneric(x); |
| x = testAsFunction(x); |
| print(x); |
| + var f = (x) { |
| + return 400 + x; |
| + }; |
| + x = f(x); |
| return x; |
| } |
| typedef NoArg(); |