]> git.lizzy.rs Git - rust.git/blob - src/test/ui/safe-extern-statics.stderr
Check for ptr-to-int casts in const functions in THIR unsafeck
[rust.git] / src / test / ui / safe-extern-statics.stderr
1 error[E0133]: use of extern static is unsafe and requires unsafe function or block
2   --> $DIR/safe-extern-statics.rs:11:13
3    |
4 LL |     let a = A;
5    |             ^ use of extern static
6    |
7    = note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
8
9 error[E0133]: use of extern static is unsafe and requires unsafe function or block
10   --> $DIR/safe-extern-statics.rs:12:14
11    |
12 LL |     let ra = &A;
13    |              ^^ use of extern static
14    |
15    = note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
16
17 error[E0133]: use of extern static is unsafe and requires unsafe function or block
18   --> $DIR/safe-extern-statics.rs:13:14
19    |
20 LL |     let xa = XA;
21    |              ^^ use of extern static
22    |
23    = note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
24
25 error[E0133]: use of extern static is unsafe and requires unsafe function or block
26   --> $DIR/safe-extern-statics.rs:14:15
27    |
28 LL |     let xra = &XA;
29    |               ^^^ use of extern static
30    |
31    = note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0133`.