mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
9 lines
145 B
Rust
9 lines
145 B
Rust
#![no_std]
|
|
|
|
//@ is "$.index[?(@.name=='Aligned')].attrs" '["#[repr(align(4))]"]'
|
|
#[repr(align(4))]
|
|
pub struct Aligned {
|
|
a: i8,
|
|
b: i64,
|
|
}
|