2022-09-09 07:28:57 -05:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2021-10-23 10:57:49 -05:00
|
|
|
--> $DIR/const-param-before-other-params.rs:1:21
|
2019-02-05 10:55:25 -06:00
|
|
|
|
|
2021-08-27 11:04:57 -05: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 10:55:25 -06:00
|
|
|
|
2020-07-30 13:39:53 -05:00
|
|
|
error: aborting due to previous error
|
2019-02-05 10:55:25 -06:00
|
|
|
|