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

Unified Diff: tests/language/fixed_type_variable2_test.dart

Issue 2770063002: Revert "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
« no previous file with comments | « tests/language/final_super_field_set_test.dart ('k') | tests/language/fixed_type_variable_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/fixed_type_variable2_test.dart
diff --git a/tests/language/fixed_type_variable2_test.dart b/tests/language/fixed_type_variable2_test.dart
index 73e211c0c2525fddad1b2634561c710cc44c53f3..8f71a4ef72246418c1f42e3066f078539a897510 100644
--- a/tests/language/fixed_type_variable2_test.dart
+++ b/tests/language/fixed_type_variable2_test.dart
@@ -11,7 +11,8 @@ class A<T> {
B<T> createB() => new B<T>();
}
-class NumA extends A<num> {}
+class NumA extends A<num> {
+}
class B<T> {
T value;
@@ -21,11 +22,14 @@ class B<T> {
}
}
-class StringB extends B<String> {}
+class StringB extends B<String> {
+}
-class C<T> extends A<T> {}
+class C<T> extends A<T> {
+}
-class IntC extends C<int> {}
+class IntC extends C<int> {
+}
void main() {
testA(); //# 01: ok
@@ -80,4 +84,4 @@ void testIntC() {
instanceB.test(0.5, false);
instanceB.test(0, true);
instanceB.test('', false);
-}
+}
« no previous file with comments | « tests/language/final_super_field_set_test.dart ('k') | tests/language/fixed_type_variable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698