mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 16:53:39 +00:00
11 lines
224 B
Rust
11 lines
224 B
Rust
#![feature(cfg_target_thread_local, thread_local)]
|
|
#![crate_type = "lib"]
|
|
|
|
#[cfg(target_thread_local)]
|
|
use std::cell::Cell;
|
|
|
|
#[no_mangle]
|
|
#[cfg(target_thread_local)]
|
|
#[thread_local]
|
|
pub static FOO: Cell<u32> = Cell::new(3);
|