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

Unified Diff: tests/language/class_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/class_cycle2_test.dart ('k') | tests/language/class_keyword_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/class_cycle_test.dart
diff --git a/tests/language/class_cycle_test.dart b/tests/language/class_cycle_test.dart
index 18be64c3a957830f575ca2dad99015df1b87003a..8b58e2bb9e1239facea8c5592ed3a26bc393cd06 100644
--- a/tests/language/class_cycle_test.dart
+++ b/tests/language/class_cycle_test.dart
@@ -12,19 +12,19 @@ class C {
}
class Bar
- extends Foo // /// 00: compile-time error
- implements Foo // /// 01: compile-time error
+ extends Foo // //# 00: compile-time error
+ implements Foo // //# 01: compile-time error
{
}
class ImplementsC implements C
-, C // /// 02: compile-time error
+, C // //# 02: compile-time error
{}
// Spec says: It is a compile-time error if the superclass
// of a class C appears in the implements clause of C.
class ExtendsC extends C
-implements C // /// 03: compile-time error
+implements C // //# 03: compile-time error
{}
main() {
« no previous file with comments | « tests/language/class_cycle2_test.dart ('k') | tests/language/class_keyword_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698