summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-move.rs
blob: 40a2718e4e5f68ed2335b907b980b1427e15bdc2 (plain)
1
2
3
4
5
6
7
8
9
// run-pass
#![allow(unused_mut)]

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