]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-eval/ub-upvars.64bit.stderr
New upstream version 1.53.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / ub-upvars.64bit.stderr
CommitLineData
a1dfa0c6 1error[E0080]: it is undefined behavior to use this value
cdc7bbd5 2 --> $DIR/ub-upvars.rs:6:1
0bf4aa26 3 |
dc9dc135 4LL | / const BAD_UPVAR: &dyn FnOnce() = &{
0bf4aa26
XL
5LL | | let bad_ref: &'static u16 = unsafe { mem::transmute(0usize) };
6LL | | let another_var = 13;
7LL | | move || { let _ = bad_ref; let _ = another_var; }
8LL | | };
74b04a01 9 | |__^ type validation failed: encountered a NULL reference at .<deref>.<dyn-downcast>.<captured-var(bad_ref)>
0bf4aa26 10 |
e1599b0c 11 = 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.
cdc7bbd5
XL
12 = note: the raw bytes of the constant (size: 16, align: 8) {
13 ╾───────alloc2────────╼ ╾───────alloc3────────╼ │ ╾──────╼╾──────╼
14 }
0bf4aa26
XL
15
16error: aborting due to previous error
17
18For more information about this error, try `rustc --explain E0080`.