Index: tests/language/compile_time_constant_m_test.dart |
diff --git a/tests/language/compile_time_constant_m_test.dart b/tests/language/compile_time_constant_m_test.dart |
index f570ec0feda68424de613f980fc1e24020248ef6..b43eb82bf5adc968f102399731a4f6ca0c7bc24c 100644 |
--- a/tests/language/compile_time_constant_m_test.dart |
+++ b/tests/language/compile_time_constant_m_test.dart |
@@ -7,7 +7,7 @@ class A { |
foo([x = const A()]) => x; |
} |
-final x = const A(); |
+const x = const A(); |
foo([x = const A()]) => x; |