### Example ```rust if let TestEnum::B(_) = *self { return true; } if let TestEnum::C(_) = *self { return true; } false ``` Could be written as: ```rust match self { TestEnum::B(_) | TestEnum::C(_) => true, _ => false, } ``` [Playground link](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=40ed3acea8a6bdbb33955f2a2231882f) <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"camsteffen"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->