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