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