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