blob: 9ce54862265dc81d83cd1b97c29612d03ca3809d [file] [log] [blame] [edit]
//@ check-pass
#![allow(unused)]
fn f() {
let x: Box<()> = Box::new(());
|| {
&x
};
}
fn main() {}