]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-ret-borrowed-1.stderr
Auto merge of #65140 - petrochenkov:disapp, r=nikomatsakis
[rust.git] / src / test / ui / regions / regions-ret-borrowed-1.stderr
1 error[E0495]: cannot infer an appropriate lifetime due to conflicting requirements
2   --> $DIR/regions-ret-borrowed-1.rs:10:14
3    |
4 LL |     with(|o| o)
5    |              ^
6    |
7 note: first, the lifetime cannot outlive the anonymous lifetime #2 defined on the body at 10:10...
8   --> $DIR/regions-ret-borrowed-1.rs:10:10
9    |
10 LL |     with(|o| o)
11    |          ^^^^^
12    = note: ...so that the expression is assignable:
13            expected &isize
14               found &isize
15 note: but, the lifetime must be valid for the lifetime 'a as defined on the function body at 9:14...
16   --> $DIR/regions-ret-borrowed-1.rs:9:14
17    |
18 LL | fn return_it<'a>() -> &'a isize {
19    |              ^^
20 note: ...so that reference does not outlive borrowed content
21   --> $DIR/regions-ret-borrowed-1.rs:10:5
22    |
23 LL |     with(|o| o)
24    |     ^^^^^^^^^^^
25
26 error: aborting due to previous error
27
28 For more information about this error, try `rustc --explain E0495`.