From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/error-codes/E0517.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/ui/error-codes/E0517.rs (limited to 'tests/ui/error-codes/E0517.rs') diff --git a/tests/ui/error-codes/E0517.rs b/tests/ui/error-codes/E0517.rs new file mode 100644 index 000000000..1dcaa2d74 --- /dev/null +++ b/tests/ui/error-codes/E0517.rs @@ -0,0 +1,15 @@ +#[repr(C)] //~ ERROR: E0517 +type Foo = u8; + +#[repr(packed)] //~ ERROR: E0517 +enum Foo2 {Bar, Baz} + +#[repr(u8)] //~ ERROR: E0517 +struct Foo3 {bar: bool, baz: bool} + +#[repr(C)] //~ ERROR: E0517 +impl Foo3 { +} + +fn main() { +} -- cgit v1.2.3