blob: 8167d785d7a8e5cb9b7272acd76f0357b3152336 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![feature(const_generics, const_evaluatable_checked)]
#![allow(incomplete_features)]
fn test<const N: usize>() -> [u8; N - 1] {
//~^ ERROR evaluation of `test::<0_usize>::{constant#0}` failed
todo!()
}
fn main() {
test::<0>();
}
|