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