rust/tests/ui/lifetimes/conflicting-bounds.rs

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

12 lines
204 B
Rust
Raw Normal View History

2022-12-05 04:38:58 +00:00
//~ type annotations needed: cannot satisfy `Self: Gen<'source>`
pub trait Gen<'source> {
type Output;
fn gen<T>(&self) -> T
where
Self: for<'s> Gen<'s, Output = T>;
}
fn main() {}