mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
8 lines
113 B
Rust
8 lines
113 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
fn problem_thingy(items: &mut impl Iterator<Item = str>) {
|
||
|
items.peekable();
|
||
|
}
|
||
|
|
||
|
fn main() {}
|