Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
thread-local
/
thread-local-with-attributes-30756.rs
blob: fcf7bb813c817971671020134e3b55e325f1e07b [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/30756
//@ run-pass
#![
forbid
(
unsafe_code
)]
thread_local
!(
static
FOO
:
u8
=
1
);
fn
main
()
{
}