rust/tests/ui/impl-trait/in-trait/missing-lt-outlives-in-rpitit-114274.rs

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

11 lines
204 B
Rust
Raw Normal View History

trait Iterable {
type Item<'a>
where
Self: 'a;
fn iter(&self) -> impl Iterator<Item = Self::Item<'missing>>;
//~^ ERROR use of undeclared lifetime name `'missing`
}
fn main() {}