blob: 60757db6d1ed23bdc6a2242a9045f594fe9d32b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
error[E0567]: auto traits cannot have generic parameters
--> $DIR/auto-trait-validation.rs:6:19
|
LL | auto trait Generic<T> {}
| -------^^^
| |
| auto trait cannot have generic parameters
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/auto-trait-validation.rs:8:20
|
LL | auto trait Bound : Copy {}
| ----- ^^^^
| |
| auto traits cannot have super traits or lifetime bounds
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/auto-trait-validation.rs:10:28
|
LL | auto trait LifetimeBound : 'static {}
| ------------- ^^^^^^^
| |
| auto traits cannot have super traits or lifetime bounds
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:12:25
|
LL | auto trait MyTrait { fn foo() {} }
| ------- ^^^
| |
| auto traits cannot have associated items
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:14:27
|
LL | auto trait AssocTy { type Bar; }
| ------- ^^^
| |
| auto traits cannot have associated items
error[E0567]: auto traits cannot have generic parameters
--> $DIR/auto-trait-validation.rs:16:15
|
LL | auto trait All<'a, T> {
| ---^^^^^^^
| |
| auto trait cannot have generic parameters
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:18:10
|
LL | auto trait All<'a, T> {
| --- auto traits cannot have associated items
LL |
LL | type Bar;
| ^^^
LL |
LL | fn foo() {}
| ^^^
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/auto-trait-validation.rs:23:18
|
LL | auto trait All2: Copy + 'static {
| ---- ^^^^ ^^^^^^^
| |
| auto traits cannot have super traits or lifetime bounds
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:25:10
|
LL | auto trait All2: Copy + 'static {
| ---- auto traits cannot have associated items
LL |
LL | type Bar;
| ^^^
LL |
LL | fn foo() {}
| ^^^
error: aborting due to 9 previous errors
Some errors have detailed explanations: E0380, E0567, E0568.
For more information about an error, try `rustc --explain E0380`.
|