macro_rules! assert_size_eq {
($t:ident, $u: ident) => { ... };
}Expand description
Do t and u have the same size? If not, this macro produces a compile
error. It must be invoked in a dead codepath. This is used in
transmute_ref! and transmute_mut!.