]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/infer_arr_len_from_pat.rs
New upstream version 1.45.0+dfsg1
[rustc.git] / src / test / ui / const-generics / infer_arr_len_from_pat.rs
1 // check-pass
2 //
3 // see issue #70529
4 #![feature(const_generics)]
5 //~^ WARN the feature `const_generics` is incomplete
6
7 fn as_chunks<const N: usize>() -> [u8; N] {
8 loop {}
9 }
10
11 fn main() {
12 let [_, _] = as_chunks();
13 }