blob: 70cbc242c41a55683c46276e7b70d50876ec66e4 [file] [log] [blame]
struct B<const I: u8>; //~ ERROR const generics are unstable
impl B<0> {
fn bug() -> Self {
panic!()
}
}
fn main() {}