mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
error: allocators cannot be `#[thread_local]`
|
|
--> $DIR/no-thread-local.rs:7:1
|
|
|
|
|
LL | #[thread_local]
|
|
| ---------------
|
|
| |
|
|
| marked `#[thread_local]` here
|
|
| help: remove this attribute
|
|
LL | static A: System = System;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|