1 2 3 4 5 6 7 8 9
struct B<const I: u8>; //~ ERROR const generics are unstable impl B<0> { fn bug() -> Self { panic!() } } fn main() {}