rust/src/test/ui/suggestions/suggest-move-lifetimes.stderr

27 lines
1.0 KiB
Plaintext
Raw Normal View History

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>`
error: lifetime parameters must be declared prior to type parameters
--> $DIR/suggest-move-lifetimes.rs:5:13
|
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>`
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>`
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>`
error: aborting due to 4 previous errors