about summary refs log tree commit diff
path: root/src/test/ui/repr/repr-transparent-other-items.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/repr/repr-transparent-other-items.stderr')
-rw-r--r--src/test/ui/repr/repr-transparent-other-items.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/repr/repr-transparent-other-items.stderr b/src/test/ui/repr/repr-transparent-other-items.stderr
deleted file mode 100644
index 14e6f13e1ae..00000000000
--- a/src/test/ui/repr/repr-transparent-other-items.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-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`.