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/const-param-before-other-params.rs:1:21
|
2019-02-05 17:55:25 +01:00
|
|
|
|
|
2021-08-27 18:04:57 +02:00
|
|
|
LL | fn bar<const X: u8, 'a>(_: &'a ()) {
|
|
|
|
| --------------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, const X: u8>`
|
2019-02-05 17:55:25 +01:00
|
|
|
|
2020-07-30 18:39:53 +00:00
|
|
|
error: aborting due to previous error
|
2019-02-05 17:55:25 +01:00
|
|
|
|