pub trait Foo { const Y: usize; } struct Abc; impl Foo for Abc { const Y: usize = 8; } struct Def; impl Foo for Def { const Y: usize = 33; } pub fn test() { let _array: [u32; ::Y]; //~^ ERROR generic parameters may not be used } fn main() {}