blob: b102ad1ec41770504e0a72f119f342b68574f2ed [file] [log] [blame]
fn main() -> i32 {
let mut x = 2;
match x {
a @ 2 => { x = a + 1 },
_ => {}
}
x - 3
}