]> git.lizzy.rs Git - rust.git/blob - tests/codegen/auxiliary/thread_local_aux.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[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) });