2022-12-02 21:01:34 +00:00
|
|
|
// 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
|
2023-01-03 02:00:33 +00:00
|
|
|
//~| NOTE expected fn pointer, found fn item
|
2022-12-02 21:01:34 +00:00
|
|
|
//~| NOTE expected fn pointer `fn(i32, u32)`
|
|
|
|
//~| NOTE arguments to this function are incorrect
|
2023-01-06 20:15:10 +00:00
|
|
|
//~| NOTE when the arguments and return types match, functions can be coerced to function pointers
|
2022-12-02 21:01:34 +00:00
|
|
|
}
|