2019-05-04 08:38:10 -05:00
|
|
|
error: lifetime parameters must be declared prior to const parameters
|
2020-08-26 05:22:55 -05:00
|
|
|
--> $DIR/const-param-before-other-params.rs:6:21
|
2019-02-05 10:55:25 -06:00
|
|
|
|
|
2019-05-04 08:38:10 -05:00
|
|
|
LL | fn bar<const X: (), 'a>(_: &'a ()) {
|
2020-07-30 15:53:32 -05:00
|
|
|
| --------------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, const X: ()>`
|
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
|
|
|
|