Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
codegen-llvm
/
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
)
});