]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/const-param-type-depends-on-type-param.min.stderr
Auto merge of #106908 - cjgillot:copyprop-ssa, r=oli-obk
[rust.git] / tests / ui / const-generics / const-param-type-depends-on-type-param.min.stderr
1 error[E0770]: the type of const parameters must not depend on other generic parameters
2   --> $DIR/const-param-type-depends-on-type-param.rs:11:34
3    |
4 LL | pub struct Dependent<T, const X: T>([(); X]);
5    |                                  ^ the type must not depend on the parameter `T`
6
7 error[E0392]: parameter `T` is never used
8   --> $DIR/const-param-type-depends-on-type-param.rs:11:22
9    |
10 LL | pub struct Dependent<T, const X: T>([(); X]);
11    |                      ^ unused parameter
12    |
13    = help: consider removing `T`, referring to it in a field, or using a marker such as `PhantomData`
14    = help: if you intended `T` to be a const parameter, use `const T: usize` instead
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0392, E0770.
19 For more information about an error, try `rustc --explain E0392`.