about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-assign-copy.rs
blob: f62984cca6607d7668df6849ce4bfe631e08ce1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ run-pass

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