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

Unified Diff: tests/language_strong/mixin_invalid_bound_test.dart

Issue 2765693002: Update all tests (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 7e76d440bdf141e617082cd5d94de1fa3a464a27..68d939637a25940821e7a70601999feba2e24cd9 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
}

Powered by Google App Engine
This is Rietveld 408576698