summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-move-by-capture-ok.rs
blob: 98e4b881893cbb4e93e1ef339890cf44b76ccf48 (plain)
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);
}