summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-main-fn.stderr
blob: 136c957538248d5f9b0228630da50480b6820cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0580]: `main` function has wrong type
  --> $DIR/extern-main-fn.rs:1:1
   |
LL | extern "C" fn main() {}
   | ^^^^^^^^^^^^^^^^^^^^ expected "Rust" fn, found "C" fn
   |
   = note: expected fn pointer `fn()`
              found fn pointer `extern "C" fn()`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0580`.