Guest User

Untitled

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