blob: 7bc3fa623ee907eca64274de06a868922a9acab3 [file] [log] [blame]
trait Foo {
fn foo<'a>(x: &i32, y: &'a i32) -> &'a i32 {
if x > y { x } else { y } //~ ERROR explicit lifetime
}
}
fn main() { }