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

Unified Diff: tests/language/interface_cycle_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/interface_cycle_test.dart
diff --git a/tests/language/interface_cycle_test.dart b/tests/language/interface_cycle_test.dart
index db57fd1ef3c66cdf1934ca2d50c5a41989473fdc..812732b46bdba154c993341f3952754e62f9ae9a 100644
--- a/tests/language/interface_cycle_test.dart
+++ b/tests/language/interface_cycle_test.dart
@@ -8,11 +8,11 @@ class C implements B {}
class A implements B {}
class B
- implements A /// 01: compile-time error
- implements A /// 02: compile-time error
+ implements A //# 01: compile-time error
+ implements A //# 02: compile-time error
{}
main() {
- new C(); /// 01: continued
- new List<C>(); /// 02: continued
+ new C(); //# 01: continued
+ new List<C>(); //# 02: continued
}

Powered by Google App Engine
This is Rietveld 408576698