summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/borrowed-universal-error.rs
blob: fc9ffd47061b4556ecd418eec42dd103c64f5764 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn gimme(x: &(u32,)) -> &u32 {
    &x.0
}

fn foo<'a>(x: &'a (u32,)) -> &'a u32 {
    let v = 22;
    gimme(&(v,))
    //~^ ERROR cannot return value referencing temporary value [E0515]
}

fn main() {}