summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/infer_arr_len_from_pat.rs
blob: 40f6f5b8d55cef999c06296eb7f19f8445672024 (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();
}