rust/tests/ui/fn/signature-error-reporting-under-verbose.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
362 B
Rust
Raw Permalink Normal View History

2023-12-19 11:39:58 -06:00
//@ compile-flags: -Zverbose-internals
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
}