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

Unified Diff: tests/language/mixin_supertype_subclass3_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/mixin_supertype_subclass3_test.dart
diff --git a/tests/language/mixin_supertype_subclass3_test.dart b/tests/language/mixin_supertype_subclass3_test.dart
index 7ca889d5d6968e9a39418de1d77c8d159e800f69..584e4443c0036d82110eb7e16487d28159276221 100644
--- a/tests/language/mixin_supertype_subclass3_test.dart
+++ b/tests/language/mixin_supertype_subclass3_test.dart
@@ -19,11 +19,11 @@ class D {}
class E extends B with C implements D {}
class F extends E {}
class A
- = E with M; class M = B with G; class G /// 01: ok
- = E with M; class M = C with G; class G /// 02: static type warning
- = E with M; class M = D with G; class G /// 03: ok
- = E with M; class M = E with G; class G /// 04: ok
- = E with M; class M = F with G; class G /// 05: static type warning
+ = E with M; class M = B with G; class G //# 01: ok
+ = E with M; class M = C with G; class G //# 02: static type warning
+ = E with M; class M = D with G; class G //# 03: ok
+ = E with M; class M = E with G; class G //# 04: ok
+ = E with M; class M = F with G; class G //# 05: static type warning
{}
main() {
« no previous file with comments | « tests/language/mixin_supertype_subclass2_test.dart ('k') | tests/language/mixin_supertype_subclass4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698