summaryrefslogtreecommitdiffstats
path: root/vendor/derivative/tests/issue-82.rs
blob: 69913d494649517584943784b8283846a10b59cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "use_core")]
extern crate core;

#[macro_use]
extern crate derivative;

#[derive(Copy, Clone, Derivative)]
#[derivative(Debug)]
#[repr(C, packed)]
struct Test {
    a: u8,
    b: u32,
}