2018-01-03 17:43:30 +01:00
|
|
|
// See also repr-transparent.rs
|
|
|
|
|
2020-09-10 19:54:17 +01:00
|
|
|
#[repr(transparent)] //~ ERROR should be applied to a struct
|
2018-01-03 17:43:30 +01:00
|
|
|
fn cant_repr_this() {}
|
|
|
|
|
2020-09-10 19:54:17 +01:00
|
|
|
#[repr(transparent)] //~ ERROR should be applied to a struct
|
2018-01-03 17:43:30 +01:00
|
|
|
static CANT_REPR_THIS: u32 = 0;
|
2018-08-23 02:19:38 +03:00
|
|
|
|
|
|
|
fn main() {}
|