Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(835)

Unified Diff: tests/language_strong/deferred_inheritance_constraints_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
}

Powered by Google App Engine
This is Rietveld 408576698