summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0131.md
blob: ed798d4f881a3ea7a057ccea3866dc206415b871 (plain)
1
2
3
4
5
6
7
8
9
10
11
The `main` function was defined with generic parameters.

Erroneous code example:

```compile_fail,E0131
fn main<T>() { // error: main function is not allowed to have generic parameters
}
```

It is not possible to define the `main` function with generic parameters.
It must not take any arguments.