blob: 0047d452b7a680e7dd10912e651d85f30e469194 [file] [log] [blame]
//@ compile-flags: -Zverbose-internals
fn foo(_: i32, _: i32) {}
fn needs_ptr(_: fn(i32, u32)) {}
//~^ NOTE function defined here
fn main() {
needs_ptr(foo);
//~^ ERROR mismatched types
//~| NOTE expected fn pointer, found fn item
//~| NOTE expected fn pointer `fn(i32, u32)`
//~| NOTE arguments to this function are incorrect
}