2022-12-02 21:01:34 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/signature-error-reporting-under-verbose.rs:10:15
|
|
|
|
|
|
|
|
|
LL | needs_ptr(foo);
|
2023-01-03 02:00:33 +00:00
|
|
|
| --------- ^^^ expected fn pointer, found fn item
|
2022-12-02 21:01:34 +00:00
|
|
|
| |
|
|
|
|
| arguments to this function are incorrect
|
|
|
|
|
|
|
|
|
= note: expected fn pointer `fn(i32, u32)`
|
|
|
|
found fn item `fn(i32, i32) {foo}`
|
|
|
|
note: function defined here
|
|
|
|
--> $DIR/signature-error-reporting-under-verbose.rs:5:4
|
|
|
|
|
|
|
|
|
LL | fn needs_ptr(_: fn(i32, u32)) {}
|
|
|
|
| ^^^^^^^^^ ---------------
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-02 21:01:34 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|