aboutsummaryrefslogtreecommitdiff
path: root/vendor/bytemuck/tests/array_tests.rs
blob: 4b9782bbc14ce6dc2fb895926863bc122da45952 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#[test]
pub fn test_cast_array() {
  let x = [0u32, 1u32, 2u32];
  let _: [u16; 6] = bytemuck::cast(x);
}

#[cfg(feature = "min_const_generics")]
#[test]
pub fn test_cast_long_array() {
  let x = [0u32; 65];
  let _: [u16; 130] = bytemuck::cast(x);
}