It is not possible to define main with a where clause.
main
Erroneous code example:
fn main() where i32: Copy { // error: main function is not allowed to have // a where clause }
Back to list of error codes