File: const_refs_to_static_fail.stderr

package info (click to toggle)
rustc 1.89.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 906,624 kB
  • sloc: xml: 158,148; python: 34,888; javascript: 19,595; sh: 19,221; ansic: 13,046; cpp: 7,144; asm: 4,376; makefile: 692; lisp: 174; sql: 15
file content (26 lines) | stat: -rw-r--r-- 1,041 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error[E0080]: constructing invalid value: encountered reference to mutable memory in `const`
  --> $DIR/const_refs_to_static_fail.rs:12:1
   |
LL | const C1: &SyncUnsafeCell<i32> = &S;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ it is undefined behavior to use this value
   |
   = 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: $SIZE, align: $ALIGN) {
               HEX_DUMP
           }

note: erroneous constant encountered
  --> $DIR/const_refs_to_static_fail.rs:14:14
   |
LL |     assert!(*C1.get() == 0);
   |              ^^

error[E0080]: constant accesses mutable global memory
  --> $DIR/const_refs_to_static_fail.rs:18:13
   |
LL |     assert!(*C2 == 0);
   |             ^^^ evaluation of `C2_READ` failed here

error: aborting due to 2 previous errors

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