Chromium Code Reviews| Index: tests/language/mixin_naming_test.dart |
| diff --git a/tests/language/mixin_naming_test.dart b/tests/language/mixin_naming_test.dart |
| index 7e2476bb82463c4386bb2e271e567a4675c5ae73..838948b6882b4bc33a8b83b337529da07b559d4e 100644 |
| --- a/tests/language/mixin_naming_test.dart |
| +++ b/tests/language/mixin_naming_test.dart |
| @@ -9,7 +9,7 @@ class M1 { } |
| class M2 { } |
| class M3 { } |
| -typedef C = S with M1, M2, M3; |
| +class C = S with M1, M2, M3; |
| class D extends S with M1, M2, M3 { } |
| class S_M1 { } |