]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-55401.nll.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / nll / issue-55401.nll.stderr
1 error: lifetime may not live long enough
2   --> $DIR/issue-55401.rs:3:5
3    |
4 LL | fn static_to_a_to_static_through_ref_in_tuple<'a>(x: &'a u32) -> &'static u32 {
5    |                                               -- lifetime `'a` defined here
6 LL |     let (ref y, _z): (&'a u32, u32) = (&22, 44);
7 LL |     *y
8    |     ^^ returning this value requires that `'a` must outlive `'static`
9    |
10    = help: consider replacing `'a` with `'static`
11
12 error: aborting due to previous error
13