summaryrefslogtreecommitdiffstats
path: root/tests/ui/repr/repr-transparent-other-items.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/repr/repr-transparent-other-items.stderr')
-rw-r--r--tests/ui/repr/repr-transparent-other-items.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/repr/repr-transparent-other-items.stderr b/tests/ui/repr/repr-transparent-other-items.stderr
new file mode 100644
index 000000000..14e6f13e1
--- /dev/null
+++ b/tests/ui/repr/repr-transparent-other-items.stderr
@@ -0,0 +1,19 @@
+error[E0517]: attribute should be applied to a struct, enum, or union
+ --> $DIR/repr-transparent-other-items.rs:3:8
+ |
+LL | #[repr(transparent)]
+ | ^^^^^^^^^^^
+LL | fn cant_repr_this() {}
+ | ---------------------- not a struct, enum, or union
+
+error[E0517]: attribute should be applied to a struct, enum, or union
+ --> $DIR/repr-transparent-other-items.rs:6:8
+ |
+LL | #[repr(transparent)]
+ | ^^^^^^^^^^^
+LL | static CANT_REPR_THIS: u32 = 0;
+ | ------------------------------- not a struct, enum, or union
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0517`.