18 lines
397 B
Rust
18 lines
397 B
Rust
#![no_std]
|
|
|
|
// Note the normalization:
|
|
// `#[repr(packed)]` in source becomes `#[repr(packed(1))]` in rustdoc JSON.
|
|
//
|
|
//@ is "$.index[?(@.name=='Packed')].attrs" '["#[repr(packed(1))]"]'
|
|
#[repr(packed)]
|
|
pub struct Packed {
|
|
a: i8,
|
|
b: i64,
|
|
}
|
|
|
|
//@ is "$.index[?(@.name=='PackedAligned')].attrs" '["#[repr(packed(4))]"]'
|
|
#[repr(packed(4))]
|
|
pub struct PackedAligned {
|
|
a: i8,
|
|
b: i64,
|
|
}
|