Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
hygiene
/
thread-local-not-in-prelude.rs
blob: bee9908bbbc285647dfef0b9a91e47fd9c5b6df6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
no_std
]
extern
crate std
;
std
::
thread_local
!(
static
A
:
usize
=
30
);
fn
main
()
{
}