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

Unified Diff: tests/language/mixin_super_bound2_test.dart

Issue 2770063002: Revert "Format all 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
« no previous file with comments | « tests/language/mixin_of_mixin_test.dart ('k') | tests/language/mixin_super_constructor_named_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/mixin_super_bound2_test.dart
diff --git a/tests/language/mixin_super_bound2_test.dart b/tests/language/mixin_super_bound2_test.dart
index f28a72f427ee916f8dc301579aee683f2c689190..f22fff687dc6f45f2fbb60112c61cfd9023d95f4 100644
--- a/tests/language/mixin_super_bound2_test.dart
+++ b/tests/language/mixin_super_bound2_test.dart
@@ -15,39 +15,32 @@ bool inCheckedMode() {
return false;
}
-class MS<
- U,
- V
+class MS<U, V
extends U //# 01: static type warning
- > {}
+ > { }
-class M<
- U
+class M<U
extends V //# 01: continued
- ,
- V> extends MS<V, U> {}
+ , V> extends MS<V, U> { }
-class NS<
- U
+class NS<U
extends V //# 01: continued
- ,
- V> {}
+ , V> { }
-class N<
- U,
- V
+class N<U, V
extends U //# 01: continued
- > extends NS<V, U> {}
+ > extends NS<V, U> { }
-class S<T> {}
+class S<T> { }
class MNA<U, V, W> extends S<List<U>>
- with M<List<V>, List<U>>, N<List<W>, List<W>> {}
+ with M<List<V>, List<U>>, N<List<W>, List<W>> { }
-class MNA2<U, V, W> = S<List<U>> with M<List<W>, List<W>>, N<List<U>, List<V>>;
+class MNA2<U, V, W> = S<List<U>>
+ with M<List<W>, List<W>>, N<List<U>, List<V>>;
class MNA3<U, V, W> extends S<List<U>>
- with MNA<U, V, W>, MNA2<List<U>, List<V>, List<W>> {}
+ with MNA<U, V, W>, MNA2<List<U>, List<V>, List<W>> { }
class MNA4<U, V, W> = S<List<U>>
with MNA<U, V, W>, MNA2<List<U>, List<V>, List<W>>;
@@ -80,3 +73,4 @@ main() {
new MNA4<int, num, bool>();
}
}
+
« no previous file with comments | « tests/language/mixin_of_mixin_test.dart ('k') | tests/language/mixin_super_constructor_named_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698