rustc/tests/ui/empty-allocation-rvalue-non-null.rs
2024-06-21 09:39:33 +02:00

9 lines
125 B
Rust

//@ run-pass
#![allow(unused_variables)]
//@ pretty-expanded FIXME #23616
pub fn main() {
let x: () = *Box::new(());
}