]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-77919.stderr
Auto merge of #79113 - andjo403:raw_vec_ptr, r=m-ou-se
[rust.git] / src / test / ui / issues / issue-77919.stderr
1 error[E0412]: cannot find type `PhantomData` in this scope
2   --> $DIR/issue-77919.rs:9:9
3    |
4 LL |     _n: PhantomData,
5    |         ^^^^^^^^^^^ not found in this scope
6    |
7 help: consider importing this struct
8    |
9 LL | use std::marker::PhantomData;
10    |
11
12 error[E0412]: cannot find type `VAL` in this scope
13   --> $DIR/issue-77919.rs:11:63
14    |
15 LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
16    |          -                                                    ^^^ not found in this scope
17    |          |
18    |          help: you might be missing a type parameter: `, VAL`
19
20 error[E0046]: not all trait items implemented, missing: `VAL`
21   --> $DIR/issue-77919.rs:11:1
22    |
23 LL |     const VAL: T;
24    |     ------------- `VAL` from trait
25 ...
26 LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
27    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `VAL` in implementation
28
29 error: aborting due to 3 previous errors
30
31 Some errors have detailed explanations: E0046, E0412.
32 For more information about an error, try `rustc --explain E0046`.