Index: tests/language/compile_time_constant_e_test.dart |
diff --git a/tests/language/compile_time_constant_e_test.dart b/tests/language/compile_time_constant_e_test.dart |
index 7ab0ea22016299167baadc1cfee40a08e30c9ea2..77b20e9da828df65ca5a4c65765e6655f1275cfe 100644 |
--- a/tests/language/compile_time_constant_e_test.dart |
+++ b/tests/language/compile_time_constant_e_test.dart |
@@ -19,7 +19,6 @@ class A { |
} |
const a1 = const A(99, 100); |
-const a1n = const A.n(99, 100); |
Johnni Winther
2016/07/05 10:34:16
Unused in test.
|
const a2 = const A.named(z: 99, t: 100); |
const a3 = const A.named2(t: 1, z: 2, y: 3, x: 4); |
const a4 = const A(); |