blob: b237b1c480e3a6b73aa599a5054c76be8d55ffbf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![feature(cfg_target_thread_local, const_fn, 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);
|