| Index: tests/language/src/ConstInitTest.dart
|
| diff --git a/tests/language/src/ConstInitTest.dart b/tests/language/src/ConstInitTest.dart
|
| index 9c64e69ee11f4ab6cdc68d559e7f0eb898e5f8e0..ae7578a0e327054eb36dce9c13d02d794c517110 100644
|
| --- a/tests/language/src/ConstInitTest.dart
|
| +++ b/tests/language/src/ConstInitTest.dart
|
| @@ -42,6 +42,8 @@ class ConstInitTest {
|
|
|
| class C2 {
|
| static final Q = const Point(0, 0);
|
| + // TODO(zundel): Was it intentional to forward reference O?
|
| + // Compiler doesn't recognize the type of O as int in that case.
|
| static final P = 2 * (O - N);
|
| static final O = 1 + 3;
|
| static final N = 1;
|
|
|