summary refs log tree commit diff
path: root/tests/rustdoc-json/attrs/repr_align.rs
blob: c6debda7f1c9ed39e12769e78ecd0dd26f6e97be (plain)
1
2
3
4
5
6
7
8
#![no_std]

//@ is "$.index[?(@.name=='Aligned')].attrs" '["#[repr(align(4))]"]'
#[repr(align(4))]
pub struct Aligned {
    a: i8,
    b: i64,
}