1 #[test] test_cast_array()2pub fn test_cast_array() { 3 let x = [0u32, 1u32, 2u32]; 4 let _: [u16; 6] = bytemuck::cast(x); 5 } 6 7 #[cfg(feature = "min_const_generics")] 8 #[test] test_cast_long_array()9pub fn test_cast_long_array() { 10 let x = [0u32; 65]; 11 let _: [u16; 130] = bytemuck::cast(x); 12 } 13