rust/tests/ui/impl-trait/in-trait/lifetime-in-associated-trai...

18 lines
216 B
Rust

//@ check-pass
trait Trait {
type Type;
fn method(&self) -> impl Trait<Type: '_>;
}
impl Trait for () {
type Type = ();
fn method(&self) -> impl Trait<Type: '_> {
()
}
}
fn main() {}