Chromium Code Reviews| Index: tests/language/named_argument_in_const_creation_test.dart |
| =================================================================== |
| --- tests/language/named_argument_in_const_creation_test.dart (revision 12414) |
| +++ tests/language/named_argument_in_const_creation_test.dart (working copy) |
| @@ -5,7 +5,7 @@ |
| class A { |
| final x; |
| final y; |
| - const A(a, [b]) : x = a, y = b; |
| + const A(a, {b}) : x = a, y = b; |
| static const test = const A(1, b: 2); |
| } |