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

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