]> git.lizzy.rs Git - rust.git/blob - src/test/ui/static/static-mut-foreign-requires-unsafe.mir.stderr
Check for use of mutable/extern statics in THIR unsafeck
[rust.git] / src / test / ui / static / static-mut-foreign-requires-unsafe.mir.stderr
1 error[E0133]: use of mutable static is unsafe and requires unsafe function or block
2   --> $DIR/static-mut-foreign-requires-unsafe.rs:9:5
3    |
4 LL |     a += 3;
5    |     ^^^^^^ use of mutable static
6    |
7    = note: mutable statics can be mutated by multiple threads: aliasing violations or data races will cause undefined behavior
8
9 error[E0133]: use of mutable static is unsafe and requires unsafe function or block
10   --> $DIR/static-mut-foreign-requires-unsafe.rs:10:5
11    |
12 LL |     a = 4;
13    |     ^^^^^ use of mutable static
14    |
15    = note: mutable statics can be mutated by multiple threads: aliasing violations or data races will cause undefined behavior
16
17 error[E0133]: use of mutable static is unsafe and requires unsafe function or block
18   --> $DIR/static-mut-foreign-requires-unsafe.rs:11:14
19    |
20 LL |     let _b = a;
21    |              ^ use of mutable static
22    |
23    = note: mutable statics can be mutated by multiple threads: aliasing violations or data races will cause undefined behavior
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0133`.