Index: tests/language_strong/constructor10_test.dart |
diff --git a/tests/language_strong/constructor10_test.dart b/tests/language_strong/constructor10_test.dart |
index f4923b7887ca1a647d846c7d7a6d83f94057b481..87d5a96a80a583ebb15312724135814fa4774fd6 100644 |
--- a/tests/language_strong/constructor10_test.dart |
+++ b/tests/language_strong/constructor10_test.dart |
@@ -11,17 +11,17 @@ class A { |
} |
class B extends A { |
- /* /// 00: compile-time error |
+ /* //# 00: compile-time error |
B() : super(null); |
- */ /// 00: continued |
+ */ //# 00: continued |
} |
// ========== |
class Y extends A { |
- /* /// 01: compile-time error |
+ /* //# 01: compile-time error |
Y() : super(null); |
- */ /// 01: continued |
+ */ //# 01: continued |
} |
class Z extends Y { |
@@ -31,9 +31,9 @@ class Z extends Y { |
// ============== |
class G extends A { |
- /* /// 02: compile-time error |
+ /* //# 02: compile-time error |
G() : super(null); |
- */ /// 02: continued |
+ */ //# 02: continued |
} |
class H extends G { |