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_type_parameters_super_extends_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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_type_parameters_super_extends_test.dart
diff --git a/tests/language_strong/mixin_type_parameters_super_extends_test.dart b/tests/language_strong/mixin_type_parameters_super_extends_test.dart
index 0ad3fe6513a7e996d93db157f7952750e915f9d6..cdebe98257f8769be7babc25aac57e89effc8ec9 100644
--- a/tests/language_strong/mixin_type_parameters_super_extends_test.dart
+++ b/tests/language_strong/mixin_type_parameters_super_extends_test.dart
@@ -37,13 +37,15 @@ class S<T> {
}
}
-class M {
-}
+class M {}
+
+class C0<T> extends S with M {}
+
+class C1<T> extends S<T> with M {}
+
+class C2<T> extends S<int> with M {}
-class C0<T> extends S with M { }
-class C1<T> extends S<T> with M { }
-class C2<T> extends S<int> with M { }
-class C3 extends S<String> with M { }
+class C3 extends S<String> with M {}
main() {
var c0 = new C0();

Powered by Google App Engine
This is Rietveld 408576698