]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const-param-type-depends-on-const-param.full.stderr
Move generic error message to separate branches
[rust.git] / src / test / ui / const-generics / const-param-type-depends-on-const-param.full.stderr
1 error[E0770]: the type of const parameters must not depend on other generic parameters
2   --> $DIR/const-param-type-depends-on-const-param.rs:11:52
3    |
4 LL | pub struct Dependent<const N: usize, const X: [u8; N]>([(); N]);
5    |                                                    ^ the type must not depend on the parameter `N`
6
7 error[E0770]: the type of const parameters must not depend on other generic parameters
8   --> $DIR/const-param-type-depends-on-const-param.rs:15:40
9    |
10 LL | pub struct SelfDependent<const N: [u8; N]>;
11    |                                        ^ the type must not depend on the parameter `N`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0770`.