]> git.proxmox.com Git - rustc.git/blame - src/test/ui/repr.rs
New upstream version 1.37.0+dfsg1
[rustc.git] / src / test / ui / repr.rs
CommitLineData
dc9dc135 1#[repr] //~ ERROR malformed `repr` attribute
94b46f34 2struct _A {}
9e0c209e 3
dc9dc135 4#[repr = "B"] //~ ERROR malformed `repr` attribute
94b46f34
XL
5struct _B {}
6
dc9dc135 7#[repr = "C"] //~ ERROR malformed `repr` attribute
94b46f34 8struct _C {}
83c7162d 9
94b46f34
XL
10#[repr(C)]
11struct _D {}
12
13fn main() {}