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

Unified Diff: tests/language_strong/mixin_invalid_bound_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_invalid_bound_test.dart
diff --git a/tests/language_strong/mixin_invalid_bound_test.dart b/tests/language_strong/mixin_invalid_bound_test.dart
index f0288e949f503a0eb01dd2410153eb3d36047867..72f6af4fbd4caa1c3d14528f574c8be625259551 100644
--- a/tests/language_strong/mixin_invalid_bound_test.dart
+++ b/tests/language_strong/mixin_invalid_bound_test.dart
@@ -22,14 +22,14 @@ class D<T> extends S<T> with M<bool> { }
class E<T> extends S<bool> with M<T> { }
main() {
- new A<int>(); // /// 01: static type warning
- new A<bool>(); // /// 02: static type warning, dynamic type error
- new B<int>(); // /// 03: static type warning
- new B<bool>(); // /// 04: static type warning, dynamic type error
- new C<int>(); // /// 05: static type warning
- new C<bool>(); // /// 06: static type warning, dynamic type error
- new D<int>(); // /// 07: static type warning, dynamic type error
- new D<bool>(); // /// 08: static type warning, dynamic type error
- new E<int>(); // /// 09: static type warning, dynamic type error
- new E<bool>(); // /// 10: static type warning, dynamic type error
+ new A<int>(); // //# 01: static type warning
+ new A<bool>(); // //# 02: static type warning, dynamic type error
+ new B<int>(); // //# 03: static type warning
+ new B<bool>(); // //# 04: static type warning, dynamic type error
+ new C<int>(); // //# 05: static type warning
+ new C<bool>(); // //# 06: static type warning, dynamic type error
+ new D<int>(); // //# 07: static type warning, dynamic type error
+ new D<bool>(); // //# 08: static type warning, dynamic type error
+ new E<int>(); // //# 09: static type warning, dynamic type error
+ new E<bool>(); // //# 10: static type warning, dynamic type error
}
« no previous file with comments | « tests/language_strong/mixin_invalid_bound2_test.dart ('k') | tests/language_strong/mixin_invalid_inheritance1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698