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

Unified Diff: tests/language_strong/mixin_invalid_bound2_test.dart

Issue 2774783002: Re-land "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
Index: tests/language_strong/mixin_invalid_bound2_test.dart
diff --git a/tests/language_strong/mixin_invalid_bound2_test.dart b/tests/language_strong/mixin_invalid_bound2_test.dart
index d1dcbcaec7abef06563e2c4a439a23be63fc5bf8..5615e2102c2ae07446227715f92cc03bd2c747e7 100644
--- a/tests/language_strong/mixin_invalid_bound2_test.dart
+++ b/tests/language_strong/mixin_invalid_bound2_test.dart
@@ -2,24 +2,24 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-class S0<T> { }
+class S0<T> {}
-class S<U extends num, V extends U> extends S0<String> { }
+class S<U extends num, V extends U> extends S0<String> {}
-class M<U extends num, V extends U> { }
+class M<U extends num, V extends U> {}
-class A<U extends num, V extends U> extends S with M { }
+class A<U extends num, V extends U> extends S with M {}
// A StaticWarning is reported here and in C, D, and E below, because U and V
// are not bounded. The purpose of this test is to verify bound checking in S,
// M, and A, the reason no bounds are declared for U and V here.
-class B<U, V> extends S<U, V> with M<int, int> { }
+class B<U, V> extends S<U, V> with M<int, int> {}
-class C<U, V> extends S<int, int> with M<U, V> { }
+class C<U, V> extends S<int, int> with M<U, V> {}
-class D<U, V> extends S<U, V> with M<double, int> { }
+class D<U, V> extends S<U, V> with M<double, int> {}
-class E<U, V> extends S<double, int> with M<U, V> { }
+class E<U, V> extends S<double, int> with M<U, V> {}
main() {
new A<int, int>(); // //# 01: static type warning
« no previous file with comments | « tests/language_strong/mixin_illegal_superclass_test.dart ('k') | tests/language_strong/mixin_invalid_bound_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698