mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 05:59:17 +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() {}
|