| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // SharedOptions=--supermixin |
| 4 | 5 |
| 5 class S0 { } | 6 class S0 { } |
| 6 class S1 extends Object { } | 7 class S1 extends Object { } |
| 7 class S2 extends S0 { } | 8 class S2 extends S0 { } |
| 8 | 9 |
| 9 class M0 { } | 10 class M0 { } |
| 10 class M1 extends Object { } | 11 class M1 extends Object { } |
| 11 class M2 extends M0 { } | 12 class M2 extends M0 { } |
| 12 | 13 |
| 13 class C00 = S0 with M0; | 14 class C00 = S0 with M0; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 113 |
| 113 new D20(); | 114 new D20(); |
| 114 new D21(); | 115 new D21(); |
| 115 new D22(); | 116 new D22(); |
| 116 new D23(); | 117 new D23(); |
| 117 new D24(); | 118 new D24(); |
| 118 new D25(); | 119 new D25(); |
| 119 new D26(); | 120 new D26(); |
| 120 new D27(); | 121 new D27(); |
| 121 } | 122 } |
| OLD | NEW |