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

Unified Diff: tests/language_strong/mixin_cyclic_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/mixin_cyclic_test.dart
diff --git a/tests/language_strong/mixin_cyclic_test.dart b/tests/language_strong/mixin_cyclic_test.dart
index 355a90300ebab6af262a9a024c23f21710e2aa02..ba23aab445688e4012b643598509bd6de888bac2 100644
--- a/tests/language_strong/mixin_cyclic_test.dart
+++ b/tests/language_strong/mixin_cyclic_test.dart
@@ -10,13 +10,13 @@ class S {}
class M<T> {}
class C1 = S with M;
-class C2 = S with C2; /// 01: compile-time error
+class C2 = S with C2; //# 01: compile-time error
class C3 = S with M implements A;
-class C4 = S with M implements C4; /// 02: compile-time error
+class C4 = S with M implements C4; //# 02: compile-time error
void main() {
new C1();
- new C2(); /// 01: continued
+ new C2(); //# 01: continued
new C3();
- new C4(); /// 02: continued
+ new C4(); //# 02: continued
}
« no previous file with comments | « tests/language_strong/mixin_black_listed_test.dart ('k') | tests/language_strong/mixin_forwarding_constructor4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698