1
- error[E0275 ]: overflow assigning `_` to `[_]`
1
+ error[E0599 ]: the function or associated item `foo` exists for struct `SafeImpl<_, RawImpl<_>>`, but its trait bounds were not satisfied
2
2
--> $DIR/issue-62742.rs:4:16
3
3
|
4
4
LL | WrongImpl::foo(0i32);
5
- | ^^^
5
+ | ^^^ function or associated item cannot be called on `SafeImpl<_, RawImpl<_>>` due to unsatisfied trait bounds
6
+ ...
7
+ LL | pub struct RawImpl<T>(PhantomData<T>);
8
+ | --------------------- doesn't satisfy `RawImpl<_>: Raw<_>`
9
+ ...
10
+ LL | pub struct SafeImpl<T: ?Sized, A: Raw<T>>(PhantomData<(A, T)>);
11
+ | ----------------------------------------- function or associated item `foo` not found for this struct
12
+ |
13
+ note: trait bound `RawImpl<_>: Raw<_>` was not satisfied
14
+ --> $DIR/issue-62742.rs:35:20
15
+ |
16
+ LL | impl<T: ?Sized, A: Raw<T>> SafeImpl<T, A> {
17
+ | ^^^^^^ --------------
18
+ | |
19
+ | unsatisfied trait bound introduced here
20
+ note: the trait `Raw` must be implemented
21
+ --> $DIR/issue-62742.rs:19:1
22
+ |
23
+ LL | pub trait Raw<T: ?Sized> {
24
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
25
+
26
+ error[E0277]: the trait bound `RawImpl<_>: Raw<_>` is not satisfied
27
+ --> $DIR/issue-62742.rs:4:5
28
+ |
29
+ LL | WrongImpl::foo(0i32);
30
+ | ^^^^^^^^^ the trait `Raw<_>` is not implemented for `RawImpl<_>`
31
+ |
32
+ = help: the trait `Raw<[_]>` is implemented for `RawImpl<_>`
33
+ note: required by a bound in `SafeImpl`
34
+ --> $DIR/issue-62742.rs:33:35
35
+ |
36
+ LL | pub struct SafeImpl<T: ?Sized, A: Raw<T>>(PhantomData<(A, T)>);
37
+ | ^^^^^^ required by this bound in `SafeImpl`
6
38
7
39
error[E0599]: the function or associated item `foo` exists for struct `SafeImpl<(), RawImpl<()>>`, but its trait bounds were not satisfied
8
- --> $DIR/issue-62742.rs:9 :22
40
+ --> $DIR/issue-62742.rs:10 :22
9
41
|
10
42
LL | WrongImpl::<()>::foo(0i32);
11
43
| ^^^ function or associated item cannot be called on `SafeImpl<(), RawImpl<()>>` due to unsatisfied trait bounds
@@ -17,33 +49,33 @@ LL | pub struct SafeImpl<T: ?Sized, A: Raw<T>>(PhantomData<(A, T)>);
17
49
| ----------------------------------------- function or associated item `foo` not found for this struct
18
50
|
19
51
note: trait bound `RawImpl<()>: Raw<()>` was not satisfied
20
- --> $DIR/issue-62742.rs:34 :20
52
+ --> $DIR/issue-62742.rs:35 :20
21
53
|
22
54
LL | impl<T: ?Sized, A: Raw<T>> SafeImpl<T, A> {
23
55
| ^^^^^^ --------------
24
56
| |
25
57
| unsatisfied trait bound introduced here
26
58
note: the trait `Raw` must be implemented
27
- --> $DIR/issue-62742.rs:18 :1
59
+ --> $DIR/issue-62742.rs:19 :1
28
60
|
29
61
LL | pub trait Raw<T: ?Sized> {
30
62
| ^^^^^^^^^^^^^^^^^^^^^^^^
31
63
32
64
error[E0277]: the trait bound `RawImpl<()>: Raw<()>` is not satisfied
33
- --> $DIR/issue-62742.rs:9 :5
65
+ --> $DIR/issue-62742.rs:10 :5
34
66
|
35
67
LL | WrongImpl::<()>::foo(0i32);
36
68
| ^^^^^^^^^^^^^^^ the trait `Raw<()>` is not implemented for `RawImpl<()>`
37
69
|
38
70
= help: the trait `Raw<[()]>` is implemented for `RawImpl<()>`
39
71
= help: for that trait implementation, expected `[()]`, found `()`
40
72
note: required by a bound in `SafeImpl`
41
- --> $DIR/issue-62742.rs:32 :35
73
+ --> $DIR/issue-62742.rs:33 :35
42
74
|
43
75
LL | pub struct SafeImpl<T: ?Sized, A: Raw<T>>(PhantomData<(A, T)>);
44
76
| ^^^^^^ required by this bound in `SafeImpl`
45
77
46
- error: aborting due to 3 previous errors
78
+ error: aborting due to 4 previous errors
47
79
48
- Some errors have detailed explanations: E0275, E0277, E0599.
49
- For more information about an error, try `rustc --explain E0275 `.
80
+ Some errors have detailed explanations: E0277, E0599.
81
+ For more information about an error, try `rustc --explain E0277 `.
0 commit comments