]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0646.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0646.md
CommitLineData
60c5eb7d 1It is not possible to define `main` with a where clause.
f035d41b 2
60c5eb7d
XL
3Erroneous code example:
4
5```compile_fail,E0646
6fn main() where i32: Copy { // error: main function is not allowed to have
7 // a where clause
8}
9```