Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
thread-local
/
thread-local-static-reference-70673.rs
blob: 3793ee7f58b70d2215deda4e8d7aa061f6b040ae [
file
] [
log
] [
blame
]
// Regression test for https://github.com/rust-lang/rust/issues/70673.
//@ run-pass
#![
feature
(
thread_local
)]
#[
thread_local
]
static
A
:
&
u8
=
&
42
;
fn
main
()
{
dbg
!(*
A
);
}