blob: b8f9827ec918730218710b046be68918eb2c08b1 [file] [log] [blame]
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
fn test<const N: usize>() -> [u8; N - 1] {
//~^ ERROR evaluation of `test::<0>::{constant#0}` failed
todo!()
}
fn main() {
test::<0>();
}