mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03: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() {}
|