summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-err4.32bit.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-err4.32bit.stderr')
-rw-r--r--src/test/ui/consts/const-err4.32bit.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-err4.32bit.stderr b/src/test/ui/consts/const-err4.32bit.stderr
new file mode 100644
index 000000000..a55384783
--- /dev/null
+++ b/src/test/ui/consts/const-err4.32bit.stderr
@@ -0,0 +1,14 @@
+error[E0080]: it is undefined behavior to use this value
+ --> $DIR/const-err4.rs:9:11
+ |
+LL | Boo = [unsafe { Foo { b: () }.a }; 4][3],
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered uninitialized bytes, but expected initialized bytes
+ |
+ = note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
+ = note: the raw bytes of the constant (size: 4, align: 4) {
+ __ __ __ __ │ ░░░░
+ }
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0080`.