]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/const_evaluatable_checked/from-sig-fail.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / const-generics / const_evaluatable_checked / from-sig-fail.rs
1 #![feature(const_generics, const_evaluatable_checked)]
2 #![allow(incomplete_features)]
3
4 fn test<const N: usize>() -> [u8; N - 1] {
5 //~^ ERROR evaluation of constant
6 todo!()
7 }
8
9 fn main() {
10 test::<0>();
11 }