mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 21:27:18 +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() {}
|