2020-10-13 23:42:59 -05:00
|
|
|
error[E0412]: cannot find type `PhantomData` in this scope
|
2022-05-01 04:03:14 -05:00
|
|
|
--> $DIR/issue-77919.rs:10:9
|
2020-10-13 23:42:59 -05:00
|
|
|
|
|
|
|
|
LL | _n: PhantomData,
|
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
|
|
|
|
LL | use std::marker::PhantomData;
|
|
|
|
|
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `VAL` in this scope
|
2022-05-01 04:03:14 -05:00
|
|
|
--> $DIR/issue-77919.rs:12:63
|
2020-10-13 23:42:59 -05:00
|
|
|
|
|
|
|
|
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
|
|
|
| - ^^^ not found in this scope
|
|
|
|
| |
|
|
|
|
| help: you might be missing a type parameter: `, VAL`
|
|
|
|
|
2021-11-26 09:14:16 -06:00
|
|
|
error[E0046]: not all trait items implemented, missing: `VAL`
|
2022-05-01 04:03:14 -05:00
|
|
|
--> $DIR/issue-77919.rs:12:1
|
2020-10-13 23:42:59 -05:00
|
|
|
|
|
2021-11-26 09:14:16 -06:00
|
|
|
LL | const VAL: T;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ------------ `VAL` from trait
|
2021-11-26 09:14:16 -06:00
|
|
|
...
|
2020-10-13 23:42:59 -05:00
|
|
|
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
2021-11-26 09:14:16 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `VAL` in implementation
|
2020-10-13 23:42:59 -05:00
|
|
|
|
2022-05-01 04:03:14 -05:00
|
|
|
error: constant expression depends on a generic parameter
|
|
|
|
--> $DIR/issue-77919.rs:2:9
|
|
|
|
|
|
|
|
|
LL | [1; <Multiply<Five, Five>>::VAL];
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this may fail depending on what value the parameter takes
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2020-10-13 23:42:59 -05:00
|
|
|
|
2021-11-26 09:14:16 -06:00
|
|
|
Some errors have detailed explanations: E0046, E0412.
|
|
|
|
For more information about an error, try `rustc --explain E0046`.
|