2021-08-27 11:04:57 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
2020-09-22 02:42:29 -05:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
fn test<const N: usize>() -> [u8; N - 1] {
|
2022-07-18 18:25:14 -05:00
|
|
|
//~^ ERROR evaluation of `test::<0>::{constant#0}` failed
|
2020-09-22 02:42:29 -05:00
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
test::<0>();
|
|
|
|
}
|