]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/ub-ref.stderr
Rollup merge of #69631 - RalfJung:rust-src, r=Mark-Simulacrum
[rust.git] / src / test / ui / consts / const-eval / ub-ref.stderr
1 error[E0080]: it is undefined behavior to use this value
2   --> $DIR/ub-ref.rs:7:1
3    |
4 LL | const UNALIGNED: &u16 = unsafe { mem::transmute(&[0u8; 4]) };
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered an unaligned reference (required 2 byte alignment but found 1)
6    |
7    = 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.
8
9 error[E0080]: it is undefined behavior to use this value
10   --> $DIR/ub-ref.rs:11:1
11    |
12 LL | const NULL: &u16 = unsafe { mem::transmute(0usize) };
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a NULL reference
14    |
15    = 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.
16
17 error[E0080]: it is undefined behavior to use this value
18   --> $DIR/ub-ref.rs:17:1
19    |
20 LL | const REF_AS_USIZE: usize = unsafe { mem::transmute(&0) };
21    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a pointer, but expected initialized plain (non-pointer) bytes
22    |
23    = 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.
24
25 error[E0080]: it is undefined behavior to use this value
26   --> $DIR/ub-ref.rs:20:1
27    |
28 LL | const REF_AS_USIZE_SLICE: &[usize] = &[unsafe { mem::transmute(&0) }];
29    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a pointer at .<deref>, but expected plain (non-pointer) bytes
30    |
31    = 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.
32
33 error[E0080]: it is undefined behavior to use this value
34   --> $DIR/ub-ref.rs:23:1
35    |
36 LL | const USIZE_AS_REF: &'static u8 = unsafe { mem::transmute(1337usize) };
37    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a dangling reference (created from integer)
38    |
39    = 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.
40
41 error: aborting due to 5 previous errors
42
43 For more information about this error, try `rustc --explain E0080`.