Chromium Code Reviews| Index: tests/language/mixin_field_test.dart |
| =================================================================== |
| --- tests/language/mixin_field_test.dart (revision 28648) |
| +++ tests/language/mixin_field_test.dart (working copy) |
| @@ -16,9 +16,9 @@ |
| var baz = "M2-baz"; |
| } |
| -typedef C = S with M1; |
| -typedef D = S with M1, M2; |
| -typedef E = S with M2, M1; |
| +class C = S with M1; |
| +class D = S with M1, M2; |
| +class E = S with M2, M1; |
| class F extends E { |
| var fez = "F-fez"; |