| Index: tests/language_strong/mixin_super_constructor_positionals_test.dart
|
| diff --git a/tests/language_strong/mixin_super_constructor_positionals_test.dart b/tests/language_strong/mixin_super_constructor_positionals_test.dart
|
| index 6aad3c659c8ce7453efab330bf4c5f285fe463ff..d8c882606bcf85f62ebe1e867f621b40999b7a95 100644
|
| --- a/tests/language_strong/mixin_super_constructor_positionals_test.dart
|
| +++ b/tests/language_strong/mixin_super_constructor_positionals_test.dart
|
| @@ -6,11 +6,12 @@ import "package:expect/expect.dart";
|
|
|
| class Base {
|
| int i, j;
|
| - Base.ctor(int this.i,
|
| + Base.ctor(
|
| + int this.i,
|
| [ // //# 01: compile-time error
|
| - int this.j
|
| + int this.j
|
| ] // //# 01: continued
|
| - );
|
| + );
|
| }
|
|
|
| abstract class M {
|
|
|