summaryrefslogtreecommitdiffstats
path: root/tests/ui/extern/extern-main-fn.stderr
blob: 846102670a83fdc757f53012e216e536bcc01d32 (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 signature `fn()`
              found signature `extern "C" fn()`

error: aborting due to previous error

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