summary refs log tree commit diff
path: root/src/test/ui/unique/unique-decl-move.rs
blob: 4a5ee56ea92828644d699e722c9a4856bef014bd (plain)
1
2
3
4
5
6
7
8
// run-pass
#![feature(box_syntax)]

pub fn main() {
    let i: Box<_> = box 100;
    let j = i;
    assert_eq!(*j, 100);
}