diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/repr/repr-transparent-other-items.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/repr/repr-transparent-other-items.rs b/src/test/ui/repr/repr-transparent-other-items.rs new file mode 100644 index 000000000..e537e3e1a --- /dev/null +++ b/src/test/ui/repr/repr-transparent-other-items.rs @@ -0,0 +1,9 @@ +// See also repr-transparent.rs + +#[repr(transparent)] //~ ERROR should be applied to a struct +fn cant_repr_this() {} + +#[repr(transparent)] //~ ERROR should be applied to a struct +static CANT_REPR_THIS: u32 = 0; + +fn main() {} |