rustc/tests/ui/empty-allocation-rvalue-non-null.rs
2024-05-23 21:15:29 +02:00

9 lines
123 B
Rust

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