blob: 675b66d057838d0931a15417817639f6f73324d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0580]: `main` function has wrong type
--> $DIR/bad-main.rs:1:1
|
LL | fn main(x: isize) { }
| ^^^^^^^^^^^^^^^^^ incorrect number of function parameters
|
= note: expected fn pointer `fn()`
found fn pointer `fn(isize)`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0580`.
|