Index: tests/language/const_constructor_super_test.dart |
diff --git a/tests/language/const_constructor_super_test.dart b/tests/language/const_constructor_super_test.dart |
index 241a7cea810eeff2b872dbb06660483b476a4fec..3a6d4eb4c9eb5432ec4cc27f0624c282121970cc 100644 |
--- a/tests/language/const_constructor_super_test.dart |
+++ b/tests/language/const_constructor_super_test.dart |
@@ -15,17 +15,17 @@ class B extends A { |
B(x) : b = x + 1, super(x); |
// Const constructor cannot call non-const super constructor. |
- const B.zerofive() : b = 0, super(5); /// 01: compile-time error |
+ const B.zerofive() : b = 0, super(5); //# 01: compile-time error |
} |
class C extends A { |
C() : super(0); |
// Implicit call to non-const constructor A(x). |
- const C.named(x); /// 02: compile-time error |
+ const C.named(x); //# 02: compile-time error |
} |
main() { |
- var b = new B.zerofive(); /// 01: continued |
+ var b = new B.zerofive(); //# 01: continued |
var b1 = new B(0); |
- var c = new C.named(""); /// 02: continued |
+ var c = new C.named(""); //# 02: continued |
} |