about summary refs log tree commit diff
path: root/tests/crashes/121097.rs
blob: 65c6028e03e364f692d965abb048cb47fa3d2f81 (plain)
1
2
3
4
5
6
7
8
9
10
//@ known-bug: #121097
#[repr(simd)]
enum Aligned {
    Zero = 0,
    One = 1,
}

fn tou8(al: Aligned) -> u8 {
    al as u8
}