mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:32:29 +00:00
14 lines
123 B
Rust
14 lines
123 B
Rust
//@ check-pass
|
|
#![allow(unused)]
|
|
|
|
fn f() {
|
|
let x: Box<()> = Box::new(());
|
|
|
|
|| {
|
|
&x
|
|
};
|
|
}
|
|
|
|
|
|
fn main() {}
|