mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:23:37 +00:00
7 lines
101 B
Rust
7 lines
101 B
Rust
//@ run-pass
|
|
const ARR: [usize; 5] = [5, 4, 3, 2, 1];
|
|
|
|
fn main() {
|
|
assert_eq!(3, ARR[ARR[3]]);
|
|
}
|