Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: tests/language/mixin_illegal_constructor_test.dart

Issue 1638923002: Compile-time error if mixing class has a factory (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/language/language_dart2js.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 class M0 { 5 class M0 {
6 factory M0(a,b,c) => null; 6 factory M0(a,b,c) => null;
7 factory M0.named() => null; 7 factory M0.named() => null;
8 } 8 }
9 9
10 class M1 { 10 class M1 {
11 M1(); 11 M1();
12 } 12 }
13 13
14 class M2 { 14 class M2 {
15 M2.named(); 15 M2.named();
16 } 16 }
17 17
18 class C0 = Object with M0; 18 class C0 = Object with M0; /// 20: compile-time error
19 class C1 = Object with M1; /// 01: compile-time error 19 class C1 = Object with M1; /// 01: compile-time error
20 class C2 = Object with M2; /// 02: compile-time error 20 class C2 = Object with M2; /// 02: compile-time error
21 class C3 = Object with M0, M1; /// 03: compile-time error 21 class C3 = Object with M0, M1; /// 03: compile-time error
22 class C4 = Object with M1, M0; /// 04: compile-time error 22 class C4 = Object with M1, M0; /// 04: compile-time error
23 class C5 = Object with M0, M2; /// 05: compile-time error 23 class C5 = Object with M0, M2; /// 05: compile-time error
24 class C6 = Object with M2, M0; /// 06: compile-time error 24 class C6 = Object with M2, M0; /// 06: compile-time error
25 25
26 class D0 extends Object with M0 { } 26 class D0 extends Object with M0 { } /// 21: compile-time error
27 class D1 extends Object with M1 { } /// 07: compile-time error 27 class D1 extends Object with M1 { } /// 07: compile-time error
28 class D2 extends Object with M2 { } /// 08: compile-time error 28 class D2 extends Object with M2 { } /// 08: compile-time error
29 class D3 extends Object with M0, M1 { } /// 09: compile-time error 29 class D3 extends Object with M0, M1 { } /// 09: compile-time error
30 class D4 extends Object with M1, M0 { } /// 10: compile-time error 30 class D4 extends Object with M1, M0 { } /// 10: compile-time error
31 class D5 extends Object with M0, M2 { } /// 11: compile-time error 31 class D5 extends Object with M0, M2 { } /// 11: compile-time error
32 class D6 extends Object with M2, M0 { } /// 12: compile-time error 32 class D6 extends Object with M2, M0 { } /// 12: compile-time error
33 33
34 main() { 34 main() {
35 new C0(); 35 new C0(); /// 20: continued
36 new C1(); /// 01: continued 36 new C1(); /// 01: continued
37 new C2(); /// 02: continued 37 new C2(); /// 02: continued
38 new C3(); /// 03: continued 38 new C3(); /// 03: continued
39 new C4(); /// 04: continued 39 new C4(); /// 04: continued
40 new C5(); /// 05: continued 40 new C5(); /// 05: continued
41 new C6(); /// 06: continued 41 new C6(); /// 06: continued
42 42
43 new D0(); 43 new D0(); /// 21: continued
44 new D1(); /// 07: continued 44 new D1(); /// 07: continued
45 new D2(); /// 08: continued 45 new D2(); /// 08: continued
46 new D3(); /// 09: continued 46 new D3(); /// 09: continued
47 new D4(); /// 10: continued 47 new D4(); /// 10: continued
48 new D5(); /// 11: continued 48 new D5(); /// 11: continued
49 new D6(); /// 12: continued 49 new D6(); /// 12: continued
50
51 new C0(1,2,3); /// 13: static type warning, runtime error
52 new C0.named(); /// 14: static type warning, runtime error
53 new D0(1,2,3); /// 15: static type warning, runtime error
54 new D0.named(); /// 16: static type warning, runtime error
55 } 50 }
OLDNEW
« no previous file with comments | « tests/language/language_dart2js.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698