Index: tests/language/compile_time_constant5_test.dart |
diff --git a/tests/language/compile_time_constant5_test.dart b/tests/language/compile_time_constant5_test.dart |
index f5cfc4db2e88867dbd1cb5371858f5607f200016..8357a484673aea7314116b3c3dcf65980b9d9d2c 100644 |
--- a/tests/language/compile_time_constant5_test.dart |
+++ b/tests/language/compile_time_constant5_test.dart |
@@ -2,9 +2,9 @@ |
// 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. |
-final x = true; |
-final g1 = !true; |
-final g2 = !g1; |
+const x = true; |
+const g1 = !true; |
+const g2 = !g1; |
main() { |
Expect.equals(false, g1); |