rust/tests/ui/suggestions/issue-97760.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
236 B
Rust
Raw Normal View History

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() {}