summary refs log tree commit diff
path: root/src/test/run-pass/unique-mutable.rs
blob: fd991c20503d4cf42671e3f93fc8124895c0b318 (plain)
1
2
3
4
5
fn main() {
    let i = ~mut 0;
    *i = 1;
    assert *i == 1;
}