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