]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0647.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0647.md
CommitLineData
f035d41b
XL
1The `start` function was defined with a where clause.
2
60c5eb7d
XL
3Erroneous code example:
4
5```compile_fail,E0647
6#![feature(start)]
7
8#[start]
9fn start(_: isize, _: *const *const u8) -> isize where (): Copy {
10 //^ error: start function is not allowed to have a where clause
11 0
12}
13```