Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
codegen
/
auxiliary
/
thread_local_aux.rs
blob: bebaa7754dd5a55dd061beac22bbdb5a63b8661e [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
use
std
::
cell
::
Cell
;
thread_local
!(
pub
static
A
:
Cell
<
u64
>
=
const
{
Cell
::
new
(
0
)
});