blob: 10ab2fd867cfc5b54d8c1da194d1785246a22f5b [file] [log] [blame]
type Arr<const N: usize> = [u8; N - 1];
//~^ ERROR generic parameters may not be used in const operations
fn test<const N: usize>() -> Arr<N> where Arr<N>: Default {
Default::default()
}
fn main() {
let x = test::<33>();
assert_eq!(x, [0; 32]);
}