blob: ed798d4f881a3ea7a057ccea3866dc206415b871 [file] [log] [blame] [view]
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.