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