]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-10291.stderr
Merge commit '97e504549371d7640cf011d266e3c17394fdddac' into sync_cg_clif-2021-12-20
[rust.git] / src / test / ui / issues / issue-10291.stderr
1 error[E0312]: lifetime of reference outlives lifetime of borrowed content...
2   --> $DIR/issue-10291.rs:3:9
3    |
4 LL |         x
5    |         ^
6    |
7 note: ...the reference is valid for the anonymous lifetime #1 defined here...
8   --> $DIR/issue-10291.rs:2:69
9    |
10 LL |       drop::<Box<dyn for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
11    |  _____________________________________________________________________^
12 LL | |         x
13 LL | |     }));
14    | |_____^
15 note: ...but the borrowed content is only valid for the lifetime `'x` as defined here
16   --> $DIR/issue-10291.rs:1:9
17    |
18 LL | fn test<'x>(x: &'x isize) {
19    |         ^^
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0312`.