OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 class S0 { } |
| 6 class S1 extends Object { } |
| 7 class S2 extends S0 { } |
| 8 |
| 9 class M0 { } |
| 10 class M1 extends Object { } |
| 11 class M2 extends M0 { } |
| 12 |
| 13 class C00 = S0 with M0; |
| 14 class C01 = S0 with M1; |
| 15 class C02 = S0 with M2; |
| 16 class C03 = S0 with M0, M1; |
| 17 class C04 = S0 with M0, M2; |
| 18 class C05 = S0 with M2, M0; |
| 19 class C06 = S0 with M1, M2; |
| 20 class C07 = S0 with M2, M1; |
| 21 |
| 22 class C10 = S1 with M0; |
| 23 class C11 = S1 with M1; |
| 24 class C12 = S1 with M2; |
| 25 class C13 = S1 with M0, M1; |
| 26 class C14 = S1 with M0, M2; |
| 27 class C15 = S1 with M2, M0; |
| 28 class C16 = S1 with M1, M2; |
| 29 class C17 = S1 with M2, M1; |
| 30 |
| 31 class C20 = S2 with M0; |
| 32 class C21 = S2 with M1; |
| 33 class C22 = S2 with M2; |
| 34 class C23 = S2 with M0, M1; |
| 35 class C24 = S2 with M0, M2; |
| 36 class C25 = S2 with M2, M0; |
| 37 class C26 = S2 with M1, M2; |
| 38 class C27 = S2 with M2, M1; |
| 39 |
| 40 class D00 extends S0 with M0 { } |
| 41 class D01 extends S0 with M1 { } |
| 42 class D02 extends S0 with M2 { } |
| 43 class D03 extends S0 with M0, M1 { } |
| 44 class D04 extends S0 with M0, M2 { } |
| 45 class D05 extends S0 with M2, M0 { } |
| 46 class D06 extends S0 with M1, M2 { } |
| 47 class D07 extends S0 with M2, M1 { } |
| 48 |
| 49 class D10 extends S1 with M0 { } |
| 50 class D11 extends S1 with M1 { } |
| 51 class D12 extends S1 with M2 { } |
| 52 class D13 extends S1 with M0, M1 { } |
| 53 class D14 extends S1 with M0, M2 { } |
| 54 class D15 extends S1 with M2, M0 { } |
| 55 class D16 extends S1 with M1, M2 { } |
| 56 class D17 extends S1 with M2, M1 { } |
| 57 |
| 58 class D20 extends S2 with M0 { } |
| 59 class D21 extends S2 with M1 { } |
| 60 class D22 extends S2 with M2 { } |
| 61 class D23 extends S2 with M0, M1 { } |
| 62 class D24 extends S2 with M0, M2 { } |
| 63 class D25 extends S2 with M2, M0 { } |
| 64 class D26 extends S2 with M1, M2 { } |
| 65 class D27 extends S2 with M2, M1 { } |
| 66 |
| 67 main() { |
| 68 new C00(); |
| 69 new C01(); |
| 70 new C02(); |
| 71 new C03(); |
| 72 new C04(); |
| 73 new C05(); |
| 74 new C06(); |
| 75 new C07(); |
| 76 |
| 77 new C10(); |
| 78 new C11(); |
| 79 new C12(); |
| 80 new C13(); |
| 81 new C14(); |
| 82 new C15(); |
| 83 new C16(); |
| 84 new C17(); |
| 85 |
| 86 new C20(); |
| 87 new C21(); |
| 88 new C22(); |
| 89 new C23(); |
| 90 new C24(); |
| 91 new C25(); |
| 92 new C26(); |
| 93 new C27(); |
| 94 |
| 95 new D00(); |
| 96 new D01(); |
| 97 new D02(); |
| 98 new D03(); |
| 99 new D04(); |
| 100 new D05(); |
| 101 new D06(); |
| 102 new D07(); |
| 103 |
| 104 new D10(); |
| 105 new D11(); |
| 106 new D12(); |
| 107 new D13(); |
| 108 new D14(); |
| 109 new D15(); |
| 110 new D16(); |
| 111 new D17(); |
| 112 |
| 113 new D20(); |
| 114 new D21(); |
| 115 new D22(); |
| 116 new D23(); |
| 117 new D24(); |
| 118 new D25(); |
| 119 new D26(); |
| 120 new D27(); |
| 121 } |
OLD | NEW |