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

Unified Diff: tests/language_strong/mixin_invalid_bound_test.dart

Issue 2768073002: 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_bound_test.dart
diff --git a/tests/language_strong/mixin_invalid_bound_test.dart b/tests/language_strong/mixin_invalid_bound_test.dart
index 72f6af4fbd4caa1c3d14528f574c8be625259551..c52e89411dfa424d2c938ee198dd5fbc0d8ce681 100644
--- a/tests/language_strong/mixin_invalid_bound_test.dart
+++ b/tests/language_strong/mixin_invalid_bound_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<T extends num> extends S0<String> { }
+class S<T extends num> extends S0<String> {}
-class M<T extends num> { }
+class M<T extends num> {}
-class A<T extends num> extends S with M { }
+class A<T extends num> extends S with M {}
// A StaticWarning is reported here and in C, D, and E below, because T is not
// bounded. The purpose of this test is to verify bound checking in S, M, and A,
// the reason no bound is declared for T here.
-class B<T> extends S<T> with M<int> { }
+class B<T> extends S<T> with M<int> {}
-class C<T> extends S<int> with M<T> { }
+class C<T> extends S<int> with M<T> {}
-class D<T> extends S<T> with M<bool> { }
+class D<T> extends S<T> with M<bool> {}
-class E<T> extends S<bool> with M<T> { }
+class E<T> extends S<bool> with M<T> {}
main() {
new A<int>(); // //# 01: static type warning

Powered by Google App Engine
This is Rietveld 408576698