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

Unified Diff: tests/language_strong/class_cycle2_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_strong/checked_setter3_test.dart ('k') | tests/language_strong/class_cycle_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/class_cycle2_test.dart
diff --git a/tests/language_strong/class_cycle2_test.dart b/tests/language_strong/class_cycle2_test.dart
index 00ad363c552dfc6605330860af577d2055da5ca8..2b1bb6576eaf322e4605287fe3c9f3163f1b9519 100644
--- a/tests/language_strong/class_cycle2_test.dart
+++ b/tests/language_strong/class_cycle2_test.dart
@@ -8,11 +8,11 @@ class C extends B {}
class A extends B {}
class B
- extends A // /// 01: compile-time error
- extends A // /// 02: compile-time error
+ extends A // //# 01: compile-time error
+ extends 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_strong/checked_setter3_test.dart ('k') | tests/language_strong/class_cycle_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698