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

Unified Diff: tests/language/type_variable_bounds_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/type_variable_bounds_test.dart
diff --git a/tests/language/type_variable_bounds_test.dart b/tests/language/type_variable_bounds_test.dart
index 7696d489aabb745f4faab260670d0770ddba77aa..5fe2a3c9b4c9131487e57d69bf7c4cf16fb6564f 100644
--- a/tests/language/type_variable_bounds_test.dart
+++ b/tests/language/type_variable_bounds_test.dart
@@ -11,7 +11,9 @@ class Foo<T extends num> {
factory Foo.good() = Foo;
- factory Foo.IFoo() { return null; }
+ factory Foo.IFoo() {
+ return null;
+ }
}
abstract class IFoo<T extends num> {
@@ -30,10 +32,9 @@ Foo<int> fi;
// String is not assignable to num.
Foo
<String> //# 02: static type warning, dynamic type error
- fs;
+ fs;
class Box<T> {
-
// Box.T is not assignable to num.
Foo<T> t; //# 03: static type warning

Powered by Google App Engine
This is Rietveld 408576698