]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/params-in-ct-in-ty-param-lazy-norm.min.stderr
Move generic error message to separate branches
[rust.git] / src / test / ui / const-generics / params-in-ct-in-ty-param-lazy-norm.min.stderr
1 error: generic parameters with a default must be trailing
2   --> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:8:12
3    |
4 LL | struct Bar<T = [u8; N], const N: usize>(T);
5    |            ^
6    |
7    = note: using type defaults and const parameters in the same parameter list is currently not permitted
8
9 error: generic parameters may not be used in const operations
10   --> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:5:44
11    |
12 LL | struct Foo<T, U = [u8; std::mem::size_of::<T>()]>(T, U);
13    |                                            ^ cannot perform const operation using `T`
14    |
15    = note: type parameters may not be used in const expressions
16    = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
17
18 error[E0128]: generic parameters with a default cannot use forward declared identifiers
19   --> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:8:21
20    |
21 LL | struct Bar<T = [u8; N], const N: usize>(T);
22    |                     ^ defaulted generic parameters cannot be forward declared
23
24 error: aborting due to 3 previous errors
25
26 For more information about this error, try `rustc --explain E0128`.