mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
11 lines
184 B
Rust
11 lines
184 B
Rust
// check-pass
|
|
|
|
#[derive(Clone, Copy)]
|
|
#[derive(Debug)] // OK, even if `Copy` is in the different `#[derive]`
|
|
#[repr(packed)]
|
|
struct CacheRecordHeader {
|
|
field: u64,
|
|
}
|
|
|
|
fn main() {}
|