| Index: tests/language_strong/const_constructor_mixin2_test.dart
|
| diff --git a/tests/language_strong/const_constructor_mixin2_test.dart b/tests/language_strong/const_constructor_mixin2_test.dart
|
| index f323b5a33b9bb26267c00ba0b99f906fcb7350a8..283a49c4ae9f24bf42da16b961b10e57a6bc88ce 100644
|
| --- a/tests/language_strong/const_constructor_mixin2_test.dart
|
| +++ b/tests/language_strong/const_constructor_mixin2_test.dart
|
| @@ -10,9 +10,9 @@ class A {
|
| const A(foo);
|
| }
|
|
|
| -class B extends A
|
| +class B extends A
|
| with Mixin // //# 01: compile-time error
|
| - {
|
| +{
|
| const B(foo) : super(foo);
|
| }
|
|
|
|
|