1 2 3 4 5 6 7 8
// run-pass #![feature(box_syntax)] pub fn main() { let bar: Box<_> = box 3; let h = || -> isize { *bar }; assert_eq!(h(), 3); }