2018-07-15 16:11:54 -05:00
|
|
|
error[E0010]: allocations are not allowed in statics
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-7364.rs:6:37
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | static boxed: Box<RefCell<isize>> = box RefCell::new(0);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ allocation not allowed in statics
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: `RefCell<isize>` cannot be shared between threads safely
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-7364.rs:6:1
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | static boxed: Box<RefCell<isize>> = box RefCell::new(0);
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `RefCell<isize>` cannot be shared between threads safely
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<isize>`
|
|
|
|
= note: required because of the requirements on the impl of `Sync` for `Unique<RefCell<isize>>`
|
|
|
|
= note: required because it appears within the type `Box<RefCell<isize>>`
|
2018-07-15 16:11:54 -05:00
|
|
|
= note: shared static variables must have a type that implements `Sync`
|
|
|
|
|
2020-09-29 19:31:04 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-09-29 19:31:04 -05:00
|
|
|
Some errors have detailed explanations: E0010, E0277.
|
2018-07-15 16:11:54 -05:00
|
|
|
For more information about an error, try `rustc --explain E0010`.
|