Index: tests/language/constant_locals_test.dart |
diff --git a/tests/language/constant_locals_test.dart b/tests/language/constant_locals_test.dart |
index bd852407f9ea68dbecfe8ef09e4c8d922740965b..f506a02729f2bfdb518e80035a77d0e0afb20a14 100644 |
--- a/tests/language/constant_locals_test.dart |
+++ b/tests/language/constant_locals_test.dart |
@@ -7,13 +7,13 @@ |
import "package:expect/expect.dart"; |
void main() { |
- const c1; /// 01: compile-time error |
+ const c1; //# 01: compile-time error |
const c2 = 0; |
- const c3 = field; /// 02: compile-time error |
- const c4 = finalField; /// 03: compile-time error |
+ const c3 = field; //# 02: compile-time error |
+ const c4 = finalField; //# 03: compile-time error |
const c5 = constField; |
- const c6 = method(); /// 04: compile-time error |
- const c7 = new Class(); /// 05: compile-time error |
+ const c6 = method(); //# 04: compile-time error |
+ const c7 = new Class(); //# 05: compile-time error |
const c8 = const Class(); |
} |