about summary refs log tree commit diff
path: root/tests/ui/repr/packed-struct-with-enum-53728.rs
blob: 6ce65ed634fc5c4981d38b9b6be35ced7fed5a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// https://github.com/rust-lang/rust/issues/53728
//@ run-pass

#![allow(dead_code)]
#[repr(u16)]
enum DeviceKind {
    Nil = 0,
}

#[repr(packed)]
struct DeviceInfo {
    endianness: u8,
    device_kind: DeviceKind,
}

fn main() {
    let _x = None::<(DeviceInfo, u8)>;
    let _y = None::<(DeviceInfo, u16)>;
    let _z = None::<(DeviceInfo, u64)>;
}