| Index: tests/language_strong/const_init_test.dart
|
| diff --git a/tests/language_strong/const_init_test.dart b/tests/language_strong/const_init_test.dart
|
| index 3f18dc14952b61369062c64382b07700f5074d6d..714f9e10b95cf0a9e0123e76d6c35715debd9e02 100644
|
| --- a/tests/language_strong/const_init_test.dart
|
| +++ b/tests/language_strong/const_init_test.dart
|
| @@ -8,7 +8,9 @@ import "package:expect/expect.dart";
|
| class Point {
|
| final x_;
|
| final y_;
|
| - const Point(x, y) : x_ = x, y_ = y;
|
| + const Point(x, y)
|
| + : x_ = x,
|
| + y_ = y;
|
| }
|
|
|
| class ConstInitTest {
|
|
|