]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-10764.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / issues / issue-10764.stderr
1 error[E0308]: mismatched types
2 --> $DIR/issue-10764.rs:4:15
3 |
4 LL | fn main() { f(bar) }
5 | - ^^^ expected "Rust" fn, found "C" fn
6 | |
7 | arguments to this function are incorrect
8 |
9 = note: expected fn pointer `fn()`
10 found fn item `extern "C" fn() {bar}`
11 note: function defined here
12 --> $DIR/issue-10764.rs:1:4
13 |
14 LL | fn f(_: extern "Rust" fn()) {}
15 | ^ ---------------------
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0308`.