``` rust // nothing here fn main() { unsafe { std::cast::transmute::<u64, u8>(1) }; } ``` ``` transmute-span.rs:1:0: 1:0 error: transmute called on types with different sizes: u64 (64 bits) to u8 (8 bits) transmute-span.rs:1 // nothing here ^ ```