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

Unified Diff: tests/language/f_bounded_quantification4_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/f_bounded_quantification4_test.dart
diff --git a/tests/language/f_bounded_quantification4_test.dart b/tests/language/f_bounded_quantification4_test.dart
index 922e225f918f2ff377571ec3a106ebd5ba80cfac..ddd6258f528cb5084f009f8fb3727de9286d67a6 100644
--- a/tests/language/f_bounded_quantification4_test.dart
+++ b/tests/language/f_bounded_quantification4_test.dart
@@ -6,11 +6,10 @@
import "package:expect/expect.dart";
-class A<T extends B<T>> { }
+class A<T extends B<T>> {}
-class B<T> extends A<T> { }
+class B<T> extends A<T> {}
main() {
Expect.equals("B<B>", new B<B>().runtimeType.toString());
}
-

Powered by Google App Engine
This is Rietveld 408576698