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

24 lines
803 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0312]: lifetime of reference outlives lifetime of borrowed content...
2018-12-25 09:56:47 -06:00
--> $DIR/issue-10291.rs:3:9
2018-07-15 16:11:54 -05:00
|
LL | x //~ ERROR E0312
| ^
|
2018-12-25 09:56:47 -06:00
note: ...the reference is valid for the anonymous lifetime #2 defined on the body at 2:65...
--> $DIR/issue-10291.rs:2:65
2018-07-15 16:11:54 -05:00
|
LL | drop::<Box<for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
| _________________________________________________________________^
LL | | x //~ ERROR E0312
LL | | }));
| |_____^
2018-12-25 09:56:47 -06:00
note: ...but the borrowed content is only valid for the lifetime 'x as defined on the function body at 1:9
--> $DIR/issue-10291.rs:1:9
2018-07-15 16:11:54 -05:00
|
LL | fn test<'x>(x: &'x isize) {
| ^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0312`.