]> git.lizzy.rs Git - rust.git/blob - src/test/ui/write-to-static-mut-in-static.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / write-to-static-mut-in-static.stderr
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; };
5    |                                 ^^^^^ tried to modify 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:34
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 LL | pub static mut C: u32 = unsafe { C = 1; 0 };
17    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18    = note: ...which again requires const-evaluating `C`, completing the cycle
19 note: cycle used when const-evaluating + checking `C`
20   --> $DIR/write-to-static-mut-in-static.rs:5:1
21    |
22 LL | pub static mut C: u32 = unsafe { C = 1; 0 };
23    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24
25 error: aborting due to 2 previous errors
26
27 Some errors occurred: E0080, E0391.
28 For more information about an error, try `rustc --explain E0080`.