mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 13:41:41 +00:00
9 lines
125 B
Rust
9 lines
125 B
Rust
//@ run-pass
|
|
|
|
#![allow(unused_variables)]
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
pub fn main() {
|
|
let x: () = *Box::new(());
|
|
}
|