Guest User

Untitled

a guest
Aug 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #![allow(unreachable_code)]
  2. #![feature(nll)]
  3.  
  4.  
  5. fn main() {
  6. println!("{:?}", {
  7. let mut x = Some(1); match x { Some(ref _y) => x = None, _ => () }; x
  8. });
  9. }
Add Comment
Please, Sign In to add comment