rust/tests/ui/impl-trait/in-trait/missing-lt-outlives-in-rpitit-114274.rs
2023-07-31 18:13:48 +00:00

14 lines
320 B
Rust

#![feature(return_position_impl_trait_in_trait)]
trait Iterable {
type Item<'a>
where
Self: 'a;
fn iter(&self) -> impl Iterator<Item = Self::Item<'missing>>;
//~^ ERROR use of undeclared lifetime name `'missing`
//~| ERROR the parameter type `Self` may not live long enough
}
fn main() {}