Chromium Code Reviews| Index: tests/language/mixin_illegal_static_access_test.dart |
| diff --git a/tests/language/mixin_illegal_static_access_test.dart b/tests/language/mixin_illegal_static_access_test.dart |
| index 81b032bedbaafed8e65fe59948a70db7829a3ff3..b48bc0f81b775df891d6a3ee079f84979e93cc59 100644 |
| --- a/tests/language/mixin_illegal_static_access_test.dart |
| +++ b/tests/language/mixin_illegal_static_access_test.dart |
| @@ -12,7 +12,7 @@ class M { |
| static bar() => 87; |
| } |
| -typedef C = S with M; |
| +class C = S with M; |
| main() { |
| Expect.equals(42, S.foo()); |