Guest User

Untitled

a guest
Dec 7th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. fn main() {
  2.  
  3. let x = Some(5);
  4. let y = Some(7);
  5.  
  6. match x {
  7. Some(x) if let Some(y) => panic!("foo"),
  8. _ => panic!("bar")
  9. }
  10. }
Add Comment
Please, Sign In to add comment