| Index: tests/language_strong/mixin_super_constructor_named_test.dart
|
| diff --git a/tests/language_strong/mixin_super_constructor_named_test.dart b/tests/language_strong/mixin_super_constructor_named_test.dart
|
| index 998f5fb1bc80d6ad2bddd4b74366cd40672c16ac..a6ec85a701e7ba1735c94bac75b017a9e036a3a6 100644
|
| --- a/tests/language_strong/mixin_super_constructor_named_test.dart
|
| +++ b/tests/language_strong/mixin_super_constructor_named_test.dart
|
| @@ -7,7 +7,7 @@ import "package:expect/expect.dart";
|
| class Base {
|
| int i, j;
|
| Base.ctor(int this.i
|
| - , {int this.j: 10} // /// 01: compile-time error
|
| + , {int this.j: 10} // //# 01: compile-time error
|
| ) {
|
| if (j == null) {
|
| j = 10;
|
| @@ -24,12 +24,12 @@ abstract class M {
|
|
|
| class C extends Base with M {
|
| int l = 131;
|
| - C.foo() : super.ctor(1, j: 13); /// 01: compile-time error
|
| + C.foo() : super.ctor(1, j: 13); //# 01: compile-time error
|
| C.bar() : super.ctor(1);
|
| }
|
|
|
| main() {
|
| - C c1 = new C.foo(); // /// 01: compile-time error
|
| + C c1 = new C.foo(); // //# 01: compile-time error
|
| C c2 = new C.bar();
|
| Expect.equals(1, c2.i);
|
| Expect.equals(10, c2.j);
|
|
|