summaryrefslogtreecommitdiffstats
path: root/tests/ui/fn/bad-main.stderr
blob: 65140a0794f846a0e6b6af1459ad0e8637c73d3e (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 signature `fn()`
              found signature `fn(isize)`

error: aborting due to previous error

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