mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
13 lines
254 B
Rust
13 lines
254 B
Rust
#![feature(return_position_impl_trait_in_trait)]
|
|
|
|
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() {}
|