]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/issue-55401.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / nll / issue-55401.stderr
CommitLineData
48663c56 1error: lifetime may not live long enough
923072b8 2 --> $DIR/issue-55401.rs:3:5
48663c56
XL
3 |
4LL | fn static_to_a_to_static_through_ref_in_tuple<'a>(x: &'a u32) -> &'static u32 {
5 | -- lifetime `'a` defined here
6LL | let (ref y, _z): (&'a u32, u32) = (&22, 44);
7LL | *y
8 | ^^ returning this value requires that `'a` must outlive `'static`
9
10error: aborting due to previous error
11