rust/tests/ui/suggestions/suggest-move-lifetimes.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-09-09 12:28:57 +00:00
error: lifetime parameters must be declared prior to type and const parameters
--> $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>`
2022-09-09 12:28:57 +00:00
error: lifetime parameters must be declared prior to type and const parameters
--> $DIR/suggest-move-lifetimes.rs:5:13
|
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>`
2022-09-09 12:28:57 +00:00
error: lifetime parameters must be declared prior to type and const parameters
--> $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>`
2022-09-09 12:28:57 +00:00
error: lifetime parameters must be declared prior to type and const parameters
--> $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>`
error: aborting due to 4 previous errors