Index: tests/language/ct_const3_test.dart |
diff --git a/tests/language/ct_const3_test.dart b/tests/language/ct_const3_test.dart |
index 2a7727c0a41db9cadb2ec38b1dfa6975642839b4..cc4c91d2b1c4c16342fdd78a45aa79910858cd0c 100644 |
--- a/tests/language/ct_const3_test.dart |
+++ b/tests/language/ct_const3_test.dart |
@@ -1,11 +1,11 @@ |
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-// Check that initializers of final fields can be declared out of order. |
+// Check that initializers of const fields can be declared out of order. |
-final P = 2 * (O - N); |
-final N = 1; |
-final O = 1 + 3; |
+const P = 2 * (O - N); |
+const N = 1; |
+const O = 1 + 3; |
int main() { |
Expect.equals(1, N); |