aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/deref-lval.rs
blob: ff76f9e6192318e7eb371df05fc1b8e780fa00b5 (plain) (blame)
1
2
3
4
5
6
fn main() {
    auto x = @mutable 5;
    *x = 1000;
    log *x;
}