2021-06-01 00:59:17 -05:00
|
|
|
error[E0658]: mutable references are not allowed in constant functions
|
2023-10-26 10:33:41 -05:00
|
|
|
--> $DIR/thread-local-static.rs:10:12
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
|
|
|
LL | const fn g(x: &mut [u32; 8]) {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0625]: thread-local statics cannot be accessed at compile-time
|
2023-10-26 10:33:41 -05:00
|
|
|
--> $DIR/thread-local-static.rs:12:28
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
|
|
|
LL | std::mem::swap(x, &mut STATIC_VAR_2)
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2021-06-01 09:05:04 -05:00
|
|
|
error[E0013]: constant functions cannot refer to statics
|
2023-10-26 10:33:41 -05:00
|
|
|
--> $DIR/thread-local-static.rs:12:28
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
|
|
|
LL | std::mem::swap(x, &mut STATIC_VAR_2)
|
2021-06-01 09:05:04 -05:00
|
|
|
| ^^^^^^^^^^^^
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
2021-06-01 09:05:04 -05:00
|
|
|
= help: consider extracting the value of the `static` to a `const`, and referring to that
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
|
|
error[E0658]: mutable references are not allowed in constant functions
|
2023-10-26 10:33:41 -05:00
|
|
|
--> $DIR/thread-local-static.rs:12:23
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
|
|
|
LL | std::mem::swap(x, &mut STATIC_VAR_2)
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0133]: use of mutable static is unsafe and requires unsafe function or block
|
2023-10-26 10:33:41 -05:00
|
|
|
--> $DIR/thread-local-static.rs:12:23
|
2021-06-01 00:59:17 -05:00
|
|
|
|
|
|
|
|
LL | std::mem::swap(x, &mut STATIC_VAR_2)
|
|
|
|
| ^^^^^^^^^^^^^^^^^ use of mutable static
|
|
|
|
|
|
|
|
|
= note: mutable statics can be mutated by multiple threads: aliasing violations or data races will cause undefined behavior
|
|
|
|
|
2021-06-14 10:35:29 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2021-06-01 00:59:17 -05:00
|
|
|
|
2021-08-02 22:03:16 -05:00
|
|
|
Some errors have detailed explanations: E0013, E0133, E0625, E0658.
|
2021-06-01 09:05:04 -05:00
|
|
|
For more information about an error, try `rustc --explain E0013`.
|