summary refs log tree commit diff
path: root/src/test/ui/issues/issue-46983.rs
blob: 87ed89289447915cdef52f533d23ade0a403379f (plain)
1
2
3
4
5
6
fn foo(x: &u32) -> &'static u32 {
    &*x
    //~^ ERROR `x` has an anonymous lifetime `'_` but it needs to satisfy a `'static` lifetime requirement [E0759]
}

fn main() {}