| Index: tests/language/mixin_mixin_test.dart
|
| diff --git a/tests/language/mixin_mixin_test.dart b/tests/language/mixin_mixin_test.dart
|
| index c4716f32ebfae6304cfbd3ec492c0d5a15c9319b..f6d2f3507fe35838ff5ec8b3ff3460fac62d7976 100644
|
| --- a/tests/language/mixin_mixin_test.dart
|
| +++ b/tests/language/mixin_mixin_test.dart
|
| @@ -2,9 +2,10 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -class S { }
|
| class M1 { foo() => 42; }
|
| -typedef M2 = S with M1;
|
| +typedef M2 = Object with M1;
|
| +
|
| +class S { }
|
| typedef C = S with M2;
|
|
|
| main() {
|
|
|