Last active
December 20, 2015 20:48
-
-
Save pnkfelix/6192821 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % rustc /tmp/toksize.rs && /tmp/toksize | |
| warning: no debug symbols in executable (-arch x86_64) | |
| size_of(Token): 192 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern mod syntax; | |
| use syntax::parse::token::Token; | |
| use std::sys; | |
| fn main() { | |
| println(fmt!("size_of(Token): %?", sys::size_of::<Token>())); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment