summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/lifetime-errors/ex1b-return-no-names-if-else.rs
blob: d6c918843c700fc58d52e6a593fa2114fec5e4d1 (plain)
1
2
3
4
5
fn foo(x: &i32, y: &i32) -> &i32 { //~ ERROR missing lifetime
    if x > y { x } else { y }
}

fn main() {}