blob: faab2cf8bcbeab71fd09ec6d21ba6aa636381f3f [file] [log] [blame]
// compile-flags:-Zverbose-internals
#![allow(warnings)]
trait Foo<'a> {
}
impl<'a, T> Foo<'a> for T { }
fn foo<'a, T>(x: &T) -> impl Foo<'a> {
x
//~^ ERROR captures lifetime that does not appear in bounds
}
fn main() {}