mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-02 18:12:51 +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() {}
|