rust/src/test/ui/suggestions/lifetimes/missing-lifetimes-in-signature.stderr

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

169 lines
5.3 KiB
Plaintext
Raw Normal View History

2022-04-17 05:41:49 -05:00
error[E0261]: use of undeclared lifetime name `'a`
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:37:11
2022-04-17 05:41:49 -05:00
|
LL | fn baz<G: 'a, T>(g: G, dest: &mut T) -> impl FnOnce() + '_
| - ^^ undeclared lifetime
| |
| help: consider introducing lifetime `'a` here: `'a,`
error[E0700]: hidden type for `impl FnOnce()` captures lifetime that does not appear in bounds
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:19:5
2022-04-17 05:41:49 -05:00
|
LL | fn foo<G, T>(g: G, dest: &mut T) -> impl FnOnce()
2022-06-27 00:45:35 -05:00
| ------ hidden type `[closure@$DIR/missing-lifetimes-in-signature.rs:19:5: 19:12]` captures the anonymous lifetime defined here
2022-04-17 05:41:49 -05:00
...
LL | / move || {
LL | |
LL | | *dest = g.get();
LL | | }
| |_____^
|
help: to declare that the `impl Trait` captures `'_`, you can add an explicit `'_` lifetime bound
|
LL | fn foo<G, T>(g: G, dest: &mut T) -> impl FnOnce() + '_
| ++++
error[E0311]: the parameter type `G` may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:30:5
2022-04-17 05:41:49 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-17 05:41:49 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^
|
note: the parameter type `G` must be valid for the anonymous lifetime defined here...
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:26:26
2022-04-17 05:41:49 -05:00
|
LL | fn bar<G, T>(g: G, dest: &mut T) -> impl FnOnce() + '_
| ^^^^^^
2022-04-24 10:04:31 -05:00
note: ...so that the type `G` will meet its required lifetime bounds
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:30:5
2022-04-24 10:04:31 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-24 10:04:31 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^
2022-04-30 03:33:37 -05:00
help: consider adding an explicit lifetime bound...
|
LL ~ fn bar<'a, G, T>(g: G, dest: &mut T) -> impl FnOnce() + '_
LL | where
LL ~ G: Get<T> + 'a,
|
2022-04-17 05:41:49 -05:00
error[E0311]: the parameter type `G` may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:52:5
2022-04-17 05:41:49 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-17 05:41:49 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^
|
note: the parameter type `G` must be valid for the anonymous lifetime defined here...
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:48:34
2022-04-17 05:41:49 -05:00
|
LL | fn qux<'a, G: 'a, T>(g: G, dest: &mut T) -> impl FnOnce() + '_
| ^^^^^^
2022-04-24 10:04:31 -05:00
note: ...so that the type `G` will meet its required lifetime bounds
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:52:5
2022-04-24 10:04:31 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-24 10:04:31 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^
2022-04-30 03:33:37 -05:00
help: consider adding an explicit lifetime bound...
|
LL | fn qux<'b, 'a, G: 'a + 'b, T>(g: G, dest: &mut T) -> impl FnOnce() + '_
| +++ ++++
2022-04-17 05:41:49 -05:00
error[E0311]: the parameter type `G` may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:61:9
2022-04-17 05:41:49 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-17 05:41:49 -05:00
LL | | *dest = g.get();
LL | | }
| |_________^
|
note: the parameter type `G` must be valid for the anonymous lifetime defined here...
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:60:47
2022-04-17 05:41:49 -05:00
|
LL | fn qux<'b, G: Get<T> + 'b, T>(g: G, dest: &mut T) -> impl FnOnce() + '_ {
| ^^^^^^
2022-04-24 10:04:31 -05:00
note: ...so that the type `G` will meet its required lifetime bounds
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:61:9
2022-04-24 10:04:31 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-24 10:04:31 -05:00
LL | | *dest = g.get();
LL | | }
| |_________^
2022-04-30 03:33:37 -05:00
help: consider adding an explicit lifetime bound...
|
LL | fn qux<'c, 'b, G: Get<T> + 'b + 'c, T>(g: G, dest: &mut T) -> impl FnOnce() + '_ {
| +++ ++++
2022-04-17 05:41:49 -05:00
error[E0311]: the parameter type `G` may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:73:5
2022-04-17 05:41:49 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
LL | |
2022-04-17 05:41:49 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^
|
note: the parameter type `G` must be valid for the anonymous lifetime defined here...
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:69:34
2022-04-17 05:41:49 -05:00
|
LL | fn bat<'a, G: 'a, T>(g: G, dest: &mut T) -> impl FnOnce() + '_ + 'a
| ^^^^^^
2022-04-24 10:04:31 -05:00
note: ...so that the type `G` will meet its required lifetime bounds
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:73:5
2022-04-24 10:04:31 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
LL | |
2022-04-24 10:04:31 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^
2022-04-30 03:33:37 -05:00
help: consider adding an explicit lifetime bound...
|
LL | fn bat<'b, 'a, G: 'a + 'b, T>(g: G, dest: &mut T) -> impl FnOnce() + '_ + 'a
| +++ ++++
2022-04-17 05:41:49 -05:00
error[E0621]: explicit lifetime required in the type of `dest`
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:73:5
2022-04-17 05:41:49 -05:00
|
LL | fn bat<'a, G: 'a, T>(g: G, dest: &mut T) -> impl FnOnce() + '_ + 'a
| ------ help: add explicit lifetime `'a` to the type of `dest`: `&'a mut T`
...
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
LL | |
2022-04-17 05:41:49 -05:00
LL | | *dest = g.get();
LL | | }
| |_____^ lifetime `'a` required
error[E0309]: the parameter type `G` may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/missing-lifetimes-in-signature.rs:85:5
2022-04-17 05:41:49 -05:00
|
LL | / move || {
2022-05-22 00:36:12 -05:00
LL | |
2022-04-17 05:41:49 -05:00
LL | | *dest = g.get();
LL | | }
2022-04-24 10:04:31 -05:00
| |_____^ ...so that the type `G` will meet its required lifetime bounds
2022-04-30 03:33:37 -05:00
|
help: consider adding an explicit lifetime bound...
|
LL | G: Get<T> + 'a,
| ++++
2022-04-17 05:41:49 -05:00
error: aborting due to 8 previous errors
2022-08-19 06:06:47 -05:00
Some errors have detailed explanations: E0261, E0309, E0311, E0621, E0700.
2022-04-17 05:41:49 -05:00
For more information about an error, try `rustc --explain E0261`.