mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
8 lines
114 B
Rust
8 lines
114 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
const ARR: [usize; 1] = [2];
|
|
const ARR2: [i32; ARR[0]] = [5, 6];
|
|
|
|
fn main() {
|
|
}
|