| Index: tests/language_strong/mixin_forwarding_constructor4_test.dart
|
| diff --git a/tests/language_strong/mixin_forwarding_constructor4_test.dart b/tests/language_strong/mixin_forwarding_constructor4_test.dart
|
| index 6bf23ae4fa7eb6d26bf190182e0ae05493fa1b93..a1e5b2e1a77182e524f12255b74677577d276979 100644
|
| --- a/tests/language_strong/mixin_forwarding_constructor4_test.dart
|
| +++ b/tests/language_strong/mixin_forwarding_constructor4_test.dart
|
| @@ -10,15 +10,15 @@ abstract class Mixin {}
|
|
|
| class Base {
|
| Base(
|
| - {x} // /// 01: compile-time error
|
| - {x} // /// 02: compile-time error
|
| - {x} // /// 03: compile-time error
|
| + {x} // //# 01: compile-time error
|
| + {x} // //# 02: compile-time error
|
| + {x} // //# 03: compile-time error
|
| );
|
| }
|
|
|
| class C extends Base with Mixin {
|
| - C(); // /// 02: continued
|
| - C() : super(); /// 03: continued
|
| + C(); // //# 02: continued
|
| + C() : super(); //# 03: continued
|
| }
|
|
|
| main() {
|
|
|