Guest User

Untitled

a guest
Jun 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #[derive(Debug, Copy, Clone)]
  2. struct Foo{}
  3.  
  4. fn gg(_x: Foo) {
  5.  
  6. }
  7.  
  8. fn main() {
  9. let a = Foo{};
  10. gg(a);
  11. println!("{:?}", a);
  12. }
Add Comment
Please, Sign In to add comment