summaryrefslogtreecommitdiffstats
path: root/tests/ui/main-wrong-type.stderr
blob: 1e5f368758e6ac1827eab918cad90caba0cdb376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 previous error

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