rust/tests/ui/const-generics/generic_const_exprs/from-sig-fail.rs
2023-01-11 09:32:08 +00:00

12 lines
216 B
Rust

#![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>();
}