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

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