]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/write-to-static-mut-in-static.stderr
Rollup merge of #106873 - BoxyUwU:ty_const_formatting, r=compiler-errors
[rust.git] / tests / ui / consts / 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    |                                 ^^^^^ modifying a static's initial value from another static's initializer
6
7 error[E0391]: cycle detected when const-evaluating + checking `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 + checking `C`...
14   --> $DIR/write-to-static-mut-in-static.rs:5:34
15    |
16 LL | pub static mut C: u32 = unsafe { C = 1; 0 };
17    |                                  ^^^^^
18    = note: ...which again requires const-evaluating + checking `C`, completing the cycle
19 note: cycle used when linting top-level module
20   --> $DIR/write-to-static-mut-in-static.rs:1:1
21    |
22 LL | / pub static mut A: u32 = 0;
23 LL | | pub static mut B: () = unsafe { A = 1; };
24 LL | |
25 LL | |
26 ...  |
27 LL | |
28 LL | | fn main() {}
29    | |____________^
30
31 error: aborting due to 2 previous errors
32
33 Some errors have detailed explanations: E0080, E0391.
34 For more information about an error, try `rustc --explain E0080`.