rust/tests/ui/thread-local/thread-local-with-attributes-30756.rs
2025-08-10 11:54:15 -04:00

9 lines
138 B
Rust

// https://github.com/rust-lang/rust/issues/30756
//@ run-pass
#![forbid(unsafe_code)]
thread_local!(static FOO: u8 = 1);
fn main() {
}