Index: tests/language_2/compile_time_constant_static3_test.dart |
diff --git a/tests/language_strong/compile_time_constant_checked3_test.dart b/tests/language_2/compile_time_constant_static3_test.dart |
similarity index 57% |
rename from tests/language_strong/compile_time_constant_checked3_test.dart |
rename to tests/language_2/compile_time_constant_static3_test.dart |
index 8b9e04c8c376b666c6b4a9fc93c47896c734d6cd..40da992cd11d9c53030256ed567c095c89002364 100644 |
--- a/tests/language_strong/compile_time_constant_checked3_test.dart |
+++ b/tests/language_2/compile_time_constant_static3_test.dart |
@@ -12,12 +12,12 @@ class A { |
const A.a6(int x) : this.x = x; |
} |
-var a1 = const A.a1(); //# 01: static type warning, checked mode compile-time error |
-var a2 = const A.a2('foo'); //# 02: static type warning, checked mode compile-time error |
-var a3 = const A.a3(); //# 03: static type warning, checked mode compile-time error |
-var a4 = const A.a4('foo'); //# 04: static type warning, checked mode compile-time error |
-var a5 = const A.a5('foo'); //# 05: static type warning, checked mode compile-time error |
-var a6 = const A.a6('foo'); //# 06: static type warning, checked mode compile-time error |
+var a1 = const A.a1(); //# 01: compile-time error |
+var a2 = const A.a2('foo'); //# 02: compile-time error |
+var a3 = const A.a3(); //# 03: compile-time error |
+var a4 = const A.a4('foo'); //# 04: compile-time error |
+var a5 = const A.a5('foo'); //# 05: compile-time error |
+var a6 = const A.a6('foo'); //# 06: compile-time error |
main() { |
print(a1); //# 01: continued |