rust/src/test/run-pass/unused-move-capture.rs
2018-12-25 21:08:33 -07:00

10 lines
146 B
Rust

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