]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/closure-requirements/region-lbr1-does-not-outlive-ebr2.stderr
rustc_mir: use nicer path printing for #[rustc_regions] NLL tests.
[rust.git] / src / test / ui / nll / closure-requirements / region-lbr1-does-not-outlive-ebr2.stderr
1 error: lifetime may not live long enough
2   --> $DIR/region-lbr1-does-not-outlive-ebr2.rs:9:5
3    |
4 LL | fn foo<'a, 'b>(x: &'a u32, y: &'b u32) -> &'b u32 {
5    |        --  -- lifetime `'b` defined here
6    |        |
7    |        lifetime `'a` defined here
8 LL |     &*x
9    |     ^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
10    |
11    = help: consider adding the following bound: `'a: 'b`
12
13 error: aborting due to previous error
14