mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 23:05:53 +00:00
12 lines
141 B
Rust
12 lines
141 B
Rust
// check-pass
|
|
//
|
|
// see issue #70529
|
|
|
|
fn as_chunks<const N: usize>() -> [u8; N] {
|
|
loop {}
|
|
}
|
|
|
|
fn main() {
|
|
let [_, _] = as_chunks();
|
|
}
|