14 lines
123 B
Rust
14 lines
123 B
Rust
//@ check-pass
|
|
#![allow(unused)]
|
|
|
|
fn f() {
|
|
let x: Box<()> = Box::new(());
|
|
|
|
|| {
|
|
&x
|
|
};
|
|
}
|
|
|
|
|
|
fn main() {}
|