summaryrefslogtreecommitdiffstats
path: root/tests/ui/fn/signature-error-reporting-under-verbose.rs
blob: d00cbd8a0f24298c581d5b8694595a9d5a5a3740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 fn pointer, found fn item
    //~| NOTE expected fn pointer `fn(i32, u32)`
    //~| NOTE arguments to this function are incorrect
}