mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-05 00:33:18 +00:00
16 lines
344 B
Rust
16 lines
344 B
Rust
// compile-flags: -Zverbose
|
|
|
|
fn foo(_: i32, _: i32) {}
|
|
|
|
fn needs_ptr(_: fn(i32, u32)) {}
|
|
//~^ NOTE function defined here
|
|
//~| NOTE
|
|
|
|
fn main() {
|
|
needs_ptr(foo);
|
|
//~^ ERROR mismatched types
|
|
//~| NOTE expected `u32`, found `i32`
|
|
//~| NOTE expected fn pointer `fn(i32, u32)`
|
|
//~| NOTE arguments to this function are incorrect
|
|
}
|