summary refs log tree commit diff
path: root/src/test/ui/issues/issue-33819.rs
blob: b73e85974a8e1b70495cada40bebd081e2d9c52e (plain)
1
2
3
4
5
6
7
8
fn main() {
    let mut op = Some(2);
    match op {
        Some(ref v) => { let a = &mut v; },
        //~^ ERROR cannot borrow `v` as mutable, as it is not declared as mutable
        None => {},
    }
}