summary refs log tree commit diff
path: root/src/test/ui/write-to-static-mut-in-static.stderr
blob: 6c2bd13d433ad7f99ad93a8f72ca141130d79037 (plain)
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
27
28
error[E0080]: could not evaluate static initializer
  --> $DIR/write-to-static-mut-in-static.rs:2:33
   |
LL | pub static mut B: () = unsafe { A = 1; };
   |                                 ^^^^^ modifying a static's initial value from another static's initializer

error[E0391]: cycle detected when const-evaluating `C`
  --> $DIR/write-to-static-mut-in-static.rs:5:34
   |
LL | pub static mut C: u32 = unsafe { C = 1; 0 };
   |                                  ^^^^^
   |
note: ...which requires const-evaluating `C`...
  --> $DIR/write-to-static-mut-in-static.rs:5:1
   |
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`
  --> $DIR/write-to-static-mut-in-static.rs:5:1
   |
LL | pub static mut C: u32 = unsafe { C = 1; 0 };
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors

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