We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following code does not do what I expect it to do:
type int = i8; println!("{}", std::mem::size_of::<int>()); // => prints 8, should be 1? Or shouldn't it compile at all?