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] {
|
2025-05-28 10:29:08 +00:00
|
|
|
//~^ ERROR overflow
|
2020-09-22 09:42:29 +02:00
|
|
|
todo!()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
test::<0>();
|
|
|
|
|
}
|