mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
236 B
Rust
10 lines
236 B
Rust
pub fn print_values(values: &impl IntoIterator)
|
|
where {
|
|
for x in values.into_iter() {
|
|
println!("{x}");
|
|
//~^ ERROR <impl IntoIterator as IntoIterator>::Item` doesn't implement `std::fmt::Display
|
|
}
|
|
}
|
|
|
|
fn main() {}
|