Chromium Code Reviews| Index: test/codegen/temps.dart |
| diff --git a/test/codegen/temps.dart b/test/codegen/temps.dart |
| index cb63c0a6cf3b914cd538afad949df0fa28cc402a..cedd38bb0ee9dfff97a10f63bff496647766a728 100644 |
| --- a/test/codegen/temps.dart |
| +++ b/test/codegen/temps.dart |
| @@ -11,9 +11,9 @@ class FormalCollision { |
| } |
| class OptionalArg { |
| - int _opt; |
| + int opt, _opt; |
| OptionalArg([this._opt = 123]); |
| - OptionalArg.named({this._opt: 456}); |
| + OptionalArg.named({this.opt: 456}); |
| } |
| main() { |