2020-04-03 10:50:06 -07:00
|
|
|
// Regression test for https://github.com/rust-lang/rust/issues/70673.
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2020-04-03 10:50:06 -07:00
|
|
|
|
|
|
|
|
#![feature(thread_local)]
|
|
|
|
|
|
|
|
|
|
#[thread_local]
|
|
|
|
|
static A: &u8 = &42;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
dbg!(*A);
|
|
|
|
|
}
|