Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
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
)
});