summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/union-const-eval-field.stderr
blob: c512e6825042ff1fe3f82f80dd346a6dec829672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0080]: it is undefined behavior to use this value
  --> $DIR/union-const-eval-field.rs:28:5
   |
LL |     const FIELD3: Field3 = unsafe { UNION.field3 };
   |     ^^^^^^^^^^^^^^^^^^^^ 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: 8, align: 8) {
               __ __ __ __ __ __ __ __                         │ ░░░░░░░░
           }

error[E0080]: erroneous constant used
  --> $DIR/union-const-eval-field.rs:30:5
   |
LL |     FIELD3
   |     ^^^^^^ referenced constant has errors

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0080`.