rust/tests/ui/layout/unexpected-unsized-field-is...

8 lines
113 B
Rust

//@ check-pass
fn problem_thingy(items: &mut impl Iterator<Item = str>) {
items.peekable();
}
fn main() {}