mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-28 09:15:08 +00:00
6 lines
83 B
Rust
6 lines
83 B
Rust
//@ run-pass
|
|
fn main() {
|
|
let _ = &&[()][0];
|
|
println!("{:?}", &[(),()][1]);
|
|
}
|