| Index: tests/language/redirecting_constructor_initializer_test.dart
|
| diff --git a/tests/language/redirecting_constructor_initializer_test.dart b/tests/language/redirecting_constructor_initializer_test.dart
|
| index 97c80057a515cbb5611f4ea4453f65a72ac3c381..d05d68c5a123d62eb816757dda520ffca20a699f 100644
|
| --- a/tests/language/redirecting_constructor_initializer_test.dart
|
| +++ b/tests/language/redirecting_constructor_initializer_test.dart
|
| @@ -27,7 +27,9 @@ class B extends A {
|
| var w;
|
|
|
| // Call the redirecting constructor using super.
|
| - B() : super(), w = append('w');
|
| + B()
|
| + : super(),
|
| + w = append('w');
|
| }
|
|
|
| main() {
|
|
|