summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl-2.rs
blob: 7bc3fa623ee907eca64274de06a868922a9acab3 (plain)
1
2
3
4
5
6
7
8
trait Foo {

fn foo<'a>(x: &i32, y: &'a i32) -> &'a i32 {
   if x > y { x } else { y } //~ ERROR explicit lifetime
   }
}

fn main() { }