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 | 4 |
5 // Test for cyclicity check on named mixin applications. | 5 // Test for cyclicity check on named mixin applications. |
6 | 6 |
7 class A<T> {} | 7 class A<T> {} |
8 | 8 |
9 class S {} | 9 class S {} |
10 | |
11 class M<T> {} | 10 class M<T> {} |
12 | 11 |
13 class C1 = S with M; | 12 class C1 = S with M; |
14 class C2 = S with C2; //# 01: compile-time error | 13 class C2 = S with C2; //# 01: compile-time error |
15 class C3 = S with M implements A; | 14 class C3 = S with M implements A; |
16 class C4 = S with M implements C4; //# 02: compile-time error | 15 class C4 = S with M implements C4; //# 02: compile-time error |
17 | 16 |
18 void main() { | 17 void main() { |
19 new C1(); | 18 new C1(); |
20 new C2(); //# 01: continued | 19 new C2(); //# 01: continued |
21 new C3(); | 20 new C3(); |
22 new C4(); //# 02: continued | 21 new C4(); //# 02: continued |
23 } | 22 } |
OLD | NEW |