2022-09-09 14:28:57 +02:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2021-10-23 16:57:49 +01:00
|
|
|
--> $DIR/param-order-err-pretty-prints-default.rs:1:33
|
2021-05-29 03:54:32 +01:00
|
|
|
|
|
|
|
|
LL | struct Foo<const M: usize = 10, 'a>(&'a u32);
|
|
|
|
| ----------------------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, const M: usize = 10>`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|