2022-09-09 12:28:57 +00:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2018-11-25 20:41:38 +00:00
|
|
|
--> $DIR/suggest-move-lifetimes.rs:1:13
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | struct A<T, 'a> {
|
2021-10-23 16:46:47 +00:00
|
|
|
| ----^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, T>`
|
2018-11-25 20:41:38 +00:00
|
|
|
|
2022-09-09 12:28:57 +00:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2018-11-26 16:32:47 +00:00
|
|
|
--> $DIR/suggest-move-lifetimes.rs:5:13
|
2018-11-25 20:41:38 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | struct B<T, 'a, U> {
|
2021-10-23 16:46:47 +00:00
|
|
|
| ----^^---- help: reorder the parameters: lifetimes, then consts and types: `<'a, T, U>`
|
2018-11-25 20:41:38 +00:00
|
|
|
|
2022-09-09 12:28:57 +00:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2018-11-25 20:41:38 +00:00
|
|
|
--> $DIR/suggest-move-lifetimes.rs:10:16
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | struct C<T, U, 'a> {
|
2021-10-23 16:46:47 +00:00
|
|
|
| -------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, T, U>`
|
2018-11-25 20:41:38 +00:00
|
|
|
|
2022-09-09 12:28:57 +00:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2018-11-26 16:32:47 +00:00
|
|
|
--> $DIR/suggest-move-lifetimes.rs:15:16
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | struct D<T, U, 'a, 'b, V, 'c> {
|
2021-10-23 16:46:47 +00:00
|
|
|
| -------^^--^^-----^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, 'b, 'c, T, U, V>`
|
2018-11-26 16:32:47 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-11-25 20:41:38 +00:00
|
|
|
|