Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #[derive(Debug, Clone, Copy)]
  2. struct Bogus;
  3.  
  4. fn main()
  5. {
  6. let x = Bogus;
  7. let y = x;
  8. println!("{:?}", y);
  9. println!("{:?}", x);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement