mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
173b8567ee
Signed-off-by: Alex Chi <iskyzh@gmail.com>
15 lines
425 B
Rust
15 lines
425 B
Rust
fn thing(x: impl FnOnce(&u32, &u32, u32)) {}
|
|
|
|
fn main() {
|
|
let f = | _ , y: &u32 , z | ();
|
|
thing(f);
|
|
//~^ ERROR mismatched types
|
|
//~^^ ERROR mismatched types
|
|
let f = | x, y: _ , z: u32 | ();
|
|
thing(f);
|
|
//~^ ERROR mismatched types
|
|
//~^^ ERROR mismatched types
|
|
//~^^^ ERROR implementation of `FnOnce` is not general enough
|
|
//~^^^^ ERROR implementation of `FnOnce` is not general enough
|
|
}
|