Index: tests/language/compile_time_constant_d_test.dart |
diff --git a/tests/language/compile_time_constant_d_test.dart b/tests/language/compile_time_constant_d_test.dart |
index df797e19f2b70c00b9cfa82a81ef0eae539b6bf8..e00c822a6a474f183ee13321a241d3d60d3b2145 100644 |
--- a/tests/language/compile_time_constant_d_test.dart |
+++ b/tests/language/compile_time_constant_d_test.dart |
@@ -10,9 +10,19 @@ class A { |
final z; |
final t; |
- const A(this.z, tt) : y = 499, t = tt, x = 3; |
- const A.named(z, this.t) : y = 400 + z, this.z = z, x = 3; |
- const A.named2(t, z, y, x) : x = t, y = z, z = y, t = x; |
+ const A(this.z, tt) |
+ : y = 499, |
+ t = tt, |
+ x = 3; |
+ const A.named(z, this.t) |
+ : y = 400 + z, |
+ this.z = z, |
+ x = 3; |
+ const A.named2(t, z, y, x) |
+ : x = t, |
+ y = z, |
+ z = y, |
+ t = x; |
toString() => "A $x $y $z $t"; |
} |