The following code does not do what I expect it to do: ``` rust type int = i8; println!("{}", std::mem::size_of::<int>()); // => prints 8, should be 1? Or shouldn't it compile at all? ```