rust/tests/ui/nll/ty-outlives/impl-trait-captures.rs
2023-01-11 09:32:08 +00:00

16 lines
224 B
Rust

// compile-flags:-Zverbose
#![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() {}