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

Unified Diff: tests/language/interface_cycle_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/language/instantiate_type_variable_test.dart ('k') | tests/language/interface_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/interface_cycle_test.dart
diff --git a/tests/language/interface_cycle_test.dart b/tests/language/interface_cycle_test.dart
index f0480bb7fda090ccd2dae981d3642c4428db63b2..0e44708fa264ee5d2bb96bd5c03570b90d86e065 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
}
« no previous file with comments | « tests/language/instantiate_type_variable_test.dart ('k') | tests/language/interface_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698