Sign in
fuchsia
/
third_party
/
rust
/
6f4d0bdde85f9e2a0e61bb3e16d407540ddc09ba
/
.
/
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
)
});