rust/tests/ui/main-wrong-type.stderr

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`.