about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-decl-move.rs
blob: 11e94f1576da2db22463e55f8b6df7de791ffeac (plain)
1
2
3
4
5
6
7
//@ run-pass

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