Index: tests/language_strong/deferred_inheritance_constraints_test.dart |
diff --git a/tests/language_strong/deferred_inheritance_constraints_test.dart b/tests/language_strong/deferred_inheritance_constraints_test.dart |
index ff009e69fcfc16fbc859cb4cfe5942b19f4c5d56..2e2cf51bdd604cb38d0fe4e931e09096ea822e9f 100644 |
--- a/tests/language_strong/deferred_inheritance_constraints_test.dart |
+++ b/tests/language_strong/deferred_inheritance_constraints_test.dart |
@@ -9,20 +9,20 @@ class Foo {} |
class Foo2 extends D {} |
class A extends |
- lib. /// extends: compile-time error |
+ lib. //# extends: compile-time error |
Foo {} |
class B implements |
- lib. /// implements: compile-time error |
+ lib. //# implements: compile-time error |
Foo {} |
class C1 {} |
class C = C1 with |
- lib. /// mixin: compile-time error |
+ lib. //# mixin: compile-time error |
Foo; |
class D { |
D() ; |
factory D.factory() = |
- lib. /// redirecting_constructor: static type warning |
+ lib. //# redirecting_constructor: static type warning |
Foo2; |
} |
@@ -30,7 +30,7 @@ void main() { |
new A(); |
new B(); |
new C(); |
- Expect.throws(() { /// redirecting_constructor: continued |
+ Expect.throws(() { //# redirecting_constructor: continued |
new D.factory(); |
- }); /// redirecting_constructor: continued |
+ }); //# redirecting_constructor: continued |
} |