about summary refs log tree commit diff
path: root/src/test/ui/repr.rs
blob: 9d844745f4299e336d9a84b02e7019f7d03ce737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[repr]
//~^ ERROR attribute must be of the form
struct _A {}

#[repr = "B"]
//~^ ERROR attribute must be of the form
struct _B {}

#[repr = "C"]
//~^ ERROR attribute must be of the form
struct _C {}

#[repr(C)]
struct _D {}

fn main() {}