#![feature(const_generics)] //~^ WARN the feature `const_generics` is incomplete struct Bad { //~ ERROR type parameters must be declared prior arr: [u8; { N }], another: T, } fn main() { }