Sign in
rust
/
rust
/
97600964b5f19f3d7a0ab32e820e4fed1322770e
/
.
/
tests
/
codegen-llvm
/
auxiliary
/
thread_local_aux.rs
blob: bebaa7754dd5a55dd061beac22bbdb5a63b8661e [
file
]
#![
crate_type
=
"lib"
]
use
std
::
cell
::
Cell
;
thread_local
!(
pub
static
A
:
Cell
<
u64
>
=
const
{
Cell
::
new
(
0
)
});