mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
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`.
|