Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. fn main() {
  2. println!("{:?}", {
  3. extern crate smallvec; ::std::mem::size_of::<Option<Box<smallvec::SmallVec<[u64; 10]>>>()
  4. });
  5. }
  6.  
  7.  
  8. /* ~~~~=== stderr ===~~~~
  9. Compiling playground v0.0.1 (file:///playground)
  10. error: expected one of `!`, `+`, `,`, `::`, or `>`, found `(`
  11. --> src/main.rs:5:96
  12. |
  13. 5 | extern crate smallvec; ::std::mem::size_of::<Option<Box<smallvec::SmallVec<[u64; 10]>>>()
  14. | ^ expected one of `!`, `+`, `,`, `::`, or `>` here
  15.  
  16. error: aborting due to previous error
  17.  
  18. error: Could not compile `playground`.
  19.  
  20. To learn more, run the command again with --verbose.
  21.  
  22. */
  23.  
  24. /* ~~~~=== stdout ===~~~~
  25.  
  26. */
Add Comment
Please, Sign In to add comment