Chromium Code Reviews| Index: dart/tests/compiler/dart2js_extra/closure6_test.dart |
| diff --git a/dart/tests/compiler/dart2js_extra/closure6_test.dart b/dart/tests/compiler/dart2js_extra/closure6_test.dart |
| index 8a1291136b53659662dcf2c7f5ea46ccfd3938fe..1fd460da92fa766651d84932129dbc784839e286 100644 |
| --- a/dart/tests/compiler/dart2js_extra/closure6_test.dart |
| +++ b/dart/tests/compiler/dart2js_extra/closure6_test.dart |
| @@ -7,7 +7,7 @@ class A { |
| bar() => foo(3, 99); |
| gee(f) => foo(fun: f); |
| - get foo2() => foo; |
| + get foo2 => foo; |
| bar2() => foo2(3, 99); |
| gee2(f) => foo2(fun: f); |
| } |