]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/params-in-ct-in-ty-param-lazy-norm.full.stderr
Auto merge of #79342 - CDirkx:ipaddr-const, r=oli-obk
[rust.git] / src / test / ui / const-generics / params-in-ct-in-ty-param-lazy-norm.full.stderr
1 error: type parameters with a default must be trailing
2   --> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:12: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: constant values inside of type parameter defaults must not depend on generic parameters
10   --> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:7:44
11    |
12 LL | struct Foo<T, U = [u8; std::mem::size_of::<T>()]>(T, U);
13    |                                            ^ the anonymous constant must not depend on the parameter `T`
14
15 error: constant values inside of type parameter defaults must not depend on generic parameters
16   --> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:12:21
17    |
18 LL | struct Bar<T = [u8; N], const N: usize>(T);
19    |                     ^ the anonymous constant must not depend on the parameter `N`
20
21 error: aborting due to 3 previous errors
22