Guest User

Untitled

a guest
Dec 10th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. fn main() {
  2. enum E {
  3. A(i32),
  4. B(i32),
  5. }
  6. match E::A(1) {
  7. E::A(x) | E::B(x) => {}
  8. }
  9. }
Add Comment
Please, Sign In to add comment