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

13 lines
254 B
Rust
Raw Normal View History

#![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`
}
fn main() {}