rust/tests/ui/impl-trait/issues/issue-54895.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
381 B
Rust
Raw Normal View History

2022-02-17 07:55:58 -06:00
trait Trait<'a> {
type Out;
fn call(&'a self) -> Self::Out;
}
struct X(());
impl<'a> Trait<'a> for X {
type Out = ();
fn call(&'a self) -> Self::Out {
()
}
}
fn f() -> impl for<'a> Trait<'a, Out = impl Sized + 'a> {
//~^ ERROR `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
2022-02-17 07:55:58 -06:00
X(())
}
fn main() {
let _ = f();
}