Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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;