summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-decl-init-copy.rs
blob: 5b9576fcc7a5b65c57badca295471b7c89eeea7d (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass

pub fn main() {
    let mut i: Box<_> = Box::new(1);
    // Should be a copy
    let mut j = i.clone();
    *i = 2;
    *j = 3;
    assert_eq!(*i, 2);
    assert_eq!(*j, 3);
}