mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
5 lines
125 B
Rust
5 lines
125 B
Rust
fn foo(_: impl Iterator<Item = i32> + ?Sized) {} //~ ERROR [E0277]
|
|
fn bar(_: impl ?Sized) {} //~ ERROR [E0277]
|
|
|
|
fn main() {}
|