```rust fn main() { let a = 1; match (a, 2) { (a, 2) => {}, _ => {}, } } ``` The `match (a, 2)` can be reduced to just `match 2`, and the `(a, 2) => {}` can be reduced to `2 => {}`.