2022-09-09 14:28:57 +02:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2021-10-23 17:46:47 +01:00
|
|
|
--> $DIR/issue-59508-1.rs:10:25
|
2019-07-29 02:01:57 +02:00
|
|
|
|
|
|
|
|
LL | pub fn do_things<T, 'a, 'b: 'a>() {
|
2020-07-30 22:11:54 +00:00
|
|
|
| ----^^--^^----- help: reorder the parameters: lifetimes, then consts and types: `<'a, 'b: 'a, T>`
|
2019-07-29 02:01:57 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-03-30 20:57:04 +01:00
|
|
|
|