| Index: tests/language_strong/constructor7_test.dart
|
| diff --git a/tests/language_strong/constructor7_test.dart b/tests/language_strong/constructor7_test.dart
|
| index f81c78cef0323f16ba50448bfbe11b1503489207..5ed7be425338a2a8f555e1dd2c6908ea85e08e39 100644
|
| --- a/tests/language_strong/constructor7_test.dart
|
| +++ b/tests/language_strong/constructor7_test.dart
|
| @@ -30,19 +30,16 @@ class A {
|
| var a = 0;
|
|
|
| A()
|
| - : a = E(1), // Initializations in different order to decls. Ascending...
|
| - b = E(2),
|
| - c = E(3),
|
| -
|
| - f = E(4), // Descending to be perverse...
|
| - e = E(5),
|
| - d = E(6),
|
| -
|
| - g = E(7), // Ascending again.
|
| - h = E(8),
|
| - i = E(9),
|
| - j = E(10) {
|
| -
|
| + : a = E(1), // Initializations in different order to decls. Ascending...
|
| + b = E(2),
|
| + c = E(3),
|
| + f = E(4), // Descending to be perverse...
|
| + e = E(5),
|
| + d = E(6),
|
| + g = E(7), // Ascending again.
|
| + h = E(8),
|
| + i = E(9),
|
| + j = E(10) {
|
| Expect.equals(1, a);
|
| Expect.equals(2, b);
|
| Expect.equals(3, c);
|
|
|