mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
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() {}
|