summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-55401.rs
blob: fc45824e903c8134a237003e02596c1c77777fb4 (plain)
1
2
3
4
5
6
fn static_to_a_to_static_through_ref_in_tuple<'a>(x: &'a u32) -> &'static u32 {
    let (ref y, _z): (&'a u32, u32) = (&22, 44);
    *y //~ ERROR
}

fn main() {}