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

Unified Diff: tests/language_strong/mixin_illegal_object_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_illegal_object_test.dart
diff --git a/tests/language_strong/mixin_illegal_object_test.dart b/tests/language_strong/mixin_illegal_object_test.dart
index fb2c0bd7c1b68f82dc837dc25602099e6bda5bb1..a95bdfa0f42c293b3f5ab7d0050b9ae1f880366b 100644
--- a/tests/language_strong/mixin_illegal_object_test.dart
+++ b/tests/language_strong/mixin_illegal_object_test.dart
@@ -7,12 +7,12 @@
class S { }
class C0 extends S
-with Object // /// 01: compile-time error
+with Object // //# 01: compile-time error
{ }
-class C1 = S with Object; // /// 02: compile-time error
+class C1 = S with Object; // //# 02: compile-time error
main() {
new C0();
- new C1(); // /// 02: continued
+ new C1(); // //# 02: continued
}
« no previous file with comments | « tests/language_strong/mixin_illegal_cycles_test.dart ('k') | tests/language_strong/mixin_illegal_super_use_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698