summaryrefslogtreecommitdiffstats
path: root/tests/ui/binding/match-ref-binding-mut-option.rs
blob: c25639b7213be0414c5b8a374bd95523f3663136 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

pub fn main() {
    let mut v = Some(22);
    match v {
      None => {}
      Some(ref mut p) => { *p += 1; }
    }
    assert_eq!(v, Some(23));
}