rust/src/test/ui/issues/issue-17545.stderr

19 lines
618 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0597]: borrowed value does not live long enough
2018-12-25 09:56:47 -06:00
--> $DIR/issue-17545.rs:7:10
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | &id(()),
2018-07-15 16:11:54 -05:00
| ^^^^^^ temporary value does not live long enough
LL | ));
| - temporary value only lives until here
|
2018-12-25 09:56:47 -06:00
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 5:12...
--> $DIR/issue-17545.rs:5:12
2018-07-15 16:11:54 -05:00
|
LL | pub fn foo<'a, F: Fn(&'a ())>(bar: F) {
| ^^
= note: consider using a `let` binding to increase its lifetime
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.