mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
12 lines
142 B
Rust
12 lines
142 B
Rust
|
//@ check-pass
|
||
|
//
|
||
|
// see issue #70529
|
||
|
|
||
|
fn as_chunks<const N: usize>() -> [u8; N] {
|
||
|
loop {}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let [_, _] = as_chunks();
|
||
|
}
|