41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
13 lines
358 B
Plaintext
13 lines
358 B
Plaintext
error[E0580]: `main` function has wrong type
|
|
--> $DIR/main-wrong-type.rs:6:1
|
|
|
|
|
LL | fn main(foo: S) {
|
|
| ^^^^^^^^^^^^^^^ incorrect number of function parameters
|
|
|
|
|
= note: expected signature `fn()`
|
|
found signature `fn(S)`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0580`.
|