| Index: tests/language/const_syntax_test.dart
|
| diff --git a/tests/language/const_syntax_test.dart b/tests/language/const_syntax_test.dart
|
| index 59fb362ecb7abe3b53f5226af57c4b2127637de1..508e986bde43efbf52b74bdf5e8cf25f2cafc7c7 100644
|
| --- a/tests/language/const_syntax_test.dart
|
| +++ b/tests/language/const_syntax_test.dart
|
| @@ -42,9 +42,9 @@ main() {
|
| }
|
|
|
| const F0 = 42;
|
| -const F1; /// 03: continued
|
| +const F1; // /// 03: continued
|
| const int F2 = 87;
|
| -const int F3; /// 04: continued
|
| +const int F3; // /// 04: continued
|
|
|
| class Point {
|
| final x, y;
|
| @@ -56,7 +56,7 @@ class Point {
|
| // user-defined const constructors.
|
| const P0 = const Point(0, 0);
|
| const P1 = const Point(0, 0) + 1; /// 05: continued
|
| -const P2 = new Point(0, 0); /// 06: continued
|
| +const P2 = new Point(0, 0); // /// 06: continued
|
| const P3 = new Point(0, 0) + 1; /// 07: continued
|
|
|
| // Check that we cannot have cyclic references in compile time
|
|
|