blob: 6088dcc61d69678267e5e60de7e409207723fcf1 [file] [log] [blame] [edit]
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() {}