mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
467bc9ffd5
Fixes #111932
10 lines
201 B
Rust
10 lines
201 B
Rust
trait Foo: std::fmt::Debug {}
|
|
|
|
fn print_foos(foos: impl Iterator<Item = dyn Foo>) {
|
|
foos.for_each(|foo| { //~ ERROR [E0277]
|
|
println!("{:?}", foo); //~ ERROR [E0277]
|
|
});
|
|
}
|
|
|
|
fn main() {}
|