2021-03-01 05:50:09 -06:00
|
|
|
error: generic parameters with a default must be trailing
|
2021-04-18 09:43:43 -05:00
|
|
|
--> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:8:12
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
|
LL | struct Bar<T = [u8; N], const N: usize>(T);
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: using type defaults and const parameters in the same parameter list is currently not permitted
|
|
|
|
|
2020-10-12 16:27:59 -05:00
|
|
|
error: generic parameters may not be used in const operations
|
2021-04-18 09:43:43 -05:00
|
|
|
--> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:5:44
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
|
LL | struct Foo<T, U = [u8; std::mem::size_of::<T>()]>(T, U);
|
2020-10-11 10:47:45 -05:00
|
|
|
| ^ cannot perform const operation using `T`
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
2020-10-12 16:27:59 -05:00
|
|
|
= note: type parameters may not be used in const expressions
|
2021-08-25 04:21:39 -05:00
|
|
|
= help: use `#![feature(const_generics)]` and `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2020-08-09 01:19:57 -05:00
|
|
|
|
2021-04-18 06:57:22 -05:00
|
|
|
error[E0128]: generic parameters with a default cannot use forward declared identifiers
|
2021-04-18 09:43:43 -05:00
|
|
|
--> $DIR/params-in-ct-in-ty-param-lazy-norm.rs:8:21
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
|
LL | struct Bar<T = [u8; N], const N: usize>(T);
|
2021-04-18 06:57:22 -05:00
|
|
|
| ^ defaulted generic parameters cannot be forward declared
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2021-04-18 06:57:22 -05:00
|
|
|
For more information about this error, try `rustc --explain E0128`.
|