summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/borrowed-match-issue-45045.rs
blob: 978eeb868edc00bee3722edf62330d0cc720c0d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Regression test for issue #45045

enum Xyz {
    A,
    B,
}

fn main() {
    let mut e = Xyz::A;
    let f = &mut e;
    let g = f;
    match e {
        //~^ cannot use `e` because it was mutably borrowed [E0503]
        Xyz::A => println!("a"),
        Xyz::B => println!("b"),
    };
    *g = Xyz::B;
}