2019-08-03 17:34:21 +00:00
|
|
|
error[E0133]: use of extern static is unsafe and requires unsafe function or block
|
2021-05-16 22:29:54 +00:00
|
|
|
--> $DIR/safe-extern-statics.rs:13:13
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let a = A;
|
2019-08-03 17:34:21 +00:00
|
|
|
| ^ use of extern static
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
|
|
|
|
|
2019-08-03 17:34:21 +00:00
|
|
|
error[E0133]: use of extern static is unsafe and requires unsafe function or block
|
2021-05-16 22:29:54 +00:00
|
|
|
--> $DIR/safe-extern-statics.rs:14:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let ra = &A;
|
2019-08-03 17:34:21 +00:00
|
|
|
| ^^ use of extern static
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
|
|
|
|
|
2019-08-03 17:34:21 +00:00
|
|
|
error[E0133]: use of extern static is unsafe and requires unsafe function or block
|
2021-05-16 22:29:54 +00:00
|
|
|
--> $DIR/safe-extern-statics.rs:15:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let xa = XA;
|
2019-08-03 17:34:21 +00:00
|
|
|
| ^^ use of extern static
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
|
|
|
|
|
2019-08-03 17:34:21 +00:00
|
|
|
error[E0133]: use of extern static is unsafe and requires unsafe function or block
|
2021-05-16 22:29:54 +00:00
|
|
|
--> $DIR/safe-extern-statics.rs:16:15
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let xra = &XA;
|
2019-08-03 17:34:21 +00:00
|
|
|
| ^^^ use of extern static
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2019-08-03 17:34:21 +00:00
|
|
|
For more information about this error, try `rustc --explain E0133`.
|