The start function was defined with a where clause.
Erroneous code example:
#![allow(unused)]#![feature(start)]fnmain() {
#[start]fnstart(_: isize, _: *const *constu8) -> isizewhere (): Copy {
//^ error: `#[start]` function is not allowed to have a where clause0
}
}