blob: baba19c08cd5521c1f1ac7fec9808f3c47483425 [file] [log] [blame]
// pretty-expanded FIXME #23616
#![feature(box_syntax)]
pub fn main() {
let _x: Box<_> = box 1;
let lam_move = || {};
lam_move();
}