| 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 068108cba082b15613d5a8fd33e88df395c8d020..998f5fb1bc80d6ad2bddd4b74366cd40672c16ac 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;
|
| @@ -29,7 +29,7 @@ class C extends Base with M {
|
| }
|
|
|
| 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);
|
|
|