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

Unified Diff: tests/language_strong/mixin_super_bound2_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_super_bound2_test.dart
diff --git a/tests/language_strong/mixin_super_bound2_test.dart b/tests/language_strong/mixin_super_bound2_test.dart
index 87e8b7ab22d8d45d4b3eec976743c19603f53c57..f22fff687dc6f45f2fbb60112c61cfd9023d95f4 100644
--- a/tests/language_strong/mixin_super_bound2_test.dart
+++ b/tests/language_strong/mixin_super_bound2_test.dart
@@ -16,19 +16,19 @@ bool inCheckedMode() {
}
class MS<U, V
- extends U /// 01: static type warning
+ extends U //# 01: static type warning
> { }
class M<U
- extends V /// 01: continued
+ extends V //# 01: continued
, V> extends MS<V, U> { }
class NS<U
- extends V /// 01: continued
+ extends V //# 01: continued
, V> { }
class N<U, V
- extends U /// 01: continued
+ extends U //# 01: continued
> extends NS<V, U> { }
class S<T> { }
@@ -51,7 +51,7 @@ main() {
new MNA3<num, int, bool>();
new MNA4<num, int, bool>();
bool shouldThrow = false
- || inCheckedMode() /// 01: continued
+ || inCheckedMode() //# 01: continued
;
if (shouldThrow) {
// Type parameter U of M must extend type parameter V, but

Powered by Google App Engine
This is Rietveld 408576698