]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-10764.stderr
point at private fields in struct literal
[rust.git] / src / test / 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`.