mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 00:03:49 +00:00
9 lines
138 B
Rust
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() {
|
|
}
|