Guest User

Untitled

a guest
Feb 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #![allow(dead_code)]
  2.  
  3. use std::mem;
  4.  
  5. enum Bar {
  6. Bax,
  7. Baz
  8. }
  9.  
  10. fn main() {
  11. println!("{}", mem::size_of::<Bar>());
  12. }
Add Comment
Please, Sign In to add comment