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

Unified Diff: tests/language_strong/duplicate_implements_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
Index: tests/language_strong/duplicate_implements_test.dart
diff --git a/tests/language_strong/duplicate_implements_test.dart b/tests/language_strong/duplicate_implements_test.dart
index c85e40c98fb3453bf9015c4efedd52a0154e86e4..8bb74e3a0d09154b82b7fdbf4562cb355c19a623 100644
--- a/tests/language_strong/duplicate_implements_test.dart
+++ b/tests/language_strong/duplicate_implements_test.dart
@@ -8,15 +8,15 @@ abstract class I { }
abstract class J { }
abstract class K<T> { }
-class X implements I, J, I { } // /// 01: compile-time error
-class X implements J, I, K<int>, K<int> { } // /// 02: compile-time error
+class X implements I, J, I { } // //# 01: compile-time error
+class X implements J, I, K<int>, K<int> { } // //# 02: compile-time error
-abstract class Z implements I, J, J { } // /// 03: compile-time error
-abstract class Z implements K<int>, K<int> { } // /// 04: compile-time error
+abstract class Z implements I, J, J { } // //# 03: compile-time error
+abstract class Z implements K<int>, K<int> { } // //# 04: compile-time error
main() {
- X x = new X(); // /// 01: continued
- X x = new X(); // /// 02: continued
- Z z = new Z(); // /// 03: continued
- Z z = new Z(); // /// 04: continued
+ X x = new X(); // //# 01: continued
+ X x = new X(); // //# 02: continued
+ Z z = new Z(); // //# 03: continued
+ Z z = new Z(); // //# 04: continued
}
« no previous file with comments | « tests/language_strong/duplicate_constructor_test.dart ('k') | tests/language_strong/duplicate_interface_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698