2018-11-25 14:41:38 -06:00
|
|
|
error: lifetime parameters must be declared prior to type parameters
|
|
|
|
--> $DIR/suggest-move-lifetimes.rs:1:13
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | struct A<T, 'a> {
|
2020-11-17 04:44:21 -06:00
|
|
|
| ----^^- help: reorder the parameters: lifetimes, then types, then consts: `<'a, T>`
|
2018-11-25 14:41:38 -06:00
|
|
|
|
|
|
|
error: lifetime parameters must be declared prior to type 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> {
|
2020-11-17 04:44:21 -06:00
|
|
|
| ----^^---- help: reorder the parameters: lifetimes, then types, then consts: `<'a, T, U>`
|
2018-11-25 14:41:38 -06:00
|
|
|
|
|
|
|
error: lifetime parameters must be declared prior to type parameters
|
|
|
|
--> $DIR/suggest-move-lifetimes.rs:10:16
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | struct C<T, U, 'a> {
|
2020-11-17 04:44:21 -06:00
|
|
|
| -------^^- help: reorder the parameters: lifetimes, then types, then consts: `<'a, T, U>`
|
2018-11-25 14:41:38 -06:00
|
|
|
|
2018-11-26 10:32:47 -06:00
|
|
|
error: lifetime parameters must be declared prior to type parameters
|
|
|
|
--> $DIR/suggest-move-lifetimes.rs:15:16
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | struct D<T, U, 'a, 'b, V, 'c> {
|
2020-11-17 04:44:21 -06:00
|
|
|
| -------^^--^^-----^^- help: reorder the parameters: lifetimes, then types, then consts: `<'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
|
|
|
|