Index: tests/language/library_prefixes_test1.dart |
diff --git a/tests/language/library_prefixes_test1.dart b/tests/language/library_prefixes_test1.dart |
index 1231e97513b7c8ad88700579df989338b137da81..53ab581a2c6b57e41b4265bbb1343af4c91f9db9 100644 |
--- a/tests/language/library_prefixes_test1.dart |
+++ b/tests/language/library_prefixes_test1.dart |
@@ -3,12 +3,12 @@ |
// BSD-style license that can be found in the LICENSE file. |
class Constants { |
- static final PI = 3.14; |
- static final foo = 1; |
+ static const PI = 3.14; |
+ static const foo = 1; |
} |
class A { |
- static final y = -1; |
+ static const y = -1; |
int x; |
A() : x = 1 {} |
A.named() : x = 3 {} |