write-to-static-mut-in-static.stderr 1.1 KB
Newer Older
1
error[E0080]: could not evaluate static initializer
2
  --> $DIR/write-to-static-mut-in-static.rs:2:33
3 4
   |
LL | pub static mut B: () = unsafe { A = 1; };
R
Ralf Jung 已提交
5
   |                                 ^^^^^ modifying a static's initial value from another static's initializer
6

7
error[E0391]: cycle detected when const-evaluating `C`
8
  --> $DIR/write-to-static-mut-in-static.rs:5:1
9 10
   |
LL | pub static mut C: u32 = unsafe { C = 1; 0 };
11
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 13
   |
note: ...which requires const-evaluating `C`...
14
  --> $DIR/write-to-static-mut-in-static.rs:5:1
15 16 17 18 19
   |
LL | pub static mut C: u32 = unsafe { C = 1; 0 };
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: ...which again requires const-evaluating `C`, completing the cycle
note: cycle used when const-evaluating + checking `C`
20
  --> $DIR/write-to-static-mut-in-static.rs:5:1
21 22 23
   |
LL | pub static mut C: u32 = unsafe { C = 1; 0 };
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24 25 26

error: aborting due to 2 previous errors

27
Some errors have detailed explanations: E0080, E0391.
28
For more information about an error, try `rustc --explain E0080`.