mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
368 B
Rust
14 lines
368 B
Rust
trait Iterable {
|
|
type Item;
|
|
fn iter(&self) -> impl Sized;
|
|
}
|
|
|
|
// `ty::Error` in a trait ref will silence any missing item errors, but will also
|
|
// prevent the `associated_items` query from being called before def ids are frozen.
|
|
impl Iterable for Missing {
|
|
//~^ ERROR cannot find type `Missing` in this scope
|
|
fn iter(&self) -> Self::Item {}
|
|
}
|
|
|
|
fn main() {}
|