11 lines
204 B
Rust
11 lines
204 B
Rust
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() {}
|