]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/infer_arr_len_from_pat.rs
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / ui / const-generics / infer_arr_len_from_pat.rs
1 // check-pass
2 //
3 // see issue #70529
4
5 fn as_chunks<const N: usize>() -> [u8; N] {
6     loop {}
7 }
8
9 fn main() {
10     let [_, _] = as_chunks();
11 }