]> git.lizzy.rs Git - rust.git/blob - tests/codegen/auxiliary/thread_local_aux.rs
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[rust.git] / tests / codegen / auxiliary / thread_local_aux.rs
1 #![crate_type = "lib"]
2
3 use std::cell::Cell;
4
5 thread_local!(pub static A: Cell<u64> = const { Cell::new(0) });