]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0131.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0131.md
CommitLineData
dfeec247
XL
1The `main` function was defined with generic parameters.
2
60c5eb7d
XL
3Erroneous code example:
4
5```compile_fail,E0131
6fn main<T>() { // error: main function is not allowed to have generic parameters
7}
8```
dfeec247
XL
9
10It is not possible to define the `main` function with generic parameters.
11It must not take any arguments.