]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-47215-ice-from-drop-elab.rs
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / issue-47215-ice-from-drop-elab.rs
1 // rust-lang/rust#47215: at one time, the compiler categorized
2 // thread-local statics as a temporary rvalue, as a way to enforce
3 // that they are only valid for a given lifetime.
4 //
5 // The problem with this is that you cannot move out of static items,
6 // but you *can* move temporary rvalues. I.e., the categorization
7 // above only solves half of the problem presented by thread-local
8 // statics.
9
10 #![feature(thread_local)]
11
12 #[thread_local]
13 static mut X: ::std::sync::atomic::AtomicUsize = ::std::sync::atomic::AtomicUsize::new(0);
14
15 fn main() {
16     unsafe {
17         let mut x = X; //~ ERROR cannot move out of static item `X` [E0507]
18         let _y = x.get_mut();
19     }
20 }