blob: e7a48ebf6ca9b0cd001dc50f2e84740e24e43b27 [file] [log] [blame]
// run-pass
pub fn main() {
let bar: Box<_> = Box::new(3);
let h = || -> isize { *bar };
assert_eq!(h(), 3);
}