about summary refs log tree commit diff
path: root/tests/ui/const-generics/infer_arr_len_from_pat.rs
blob: 0ad01d6144d579f1eb8e14857ccbedb3f8eb8d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
//
// see issue #70529

fn as_chunks<const N: usize>() -> [u8; N] {
    loop {}
}

fn main() {
    let [_, _] = as_chunks();
}