summaryrefslogtreecommitdiffstats
path: root/tests/codegen/auxiliary/thread_local_aux.rs
blob: bebaa7754dd5a55dd061beac22bbdb5a63b8661e (plain)
1
2
3
4
5
#![crate_type = "lib"]

use std::cell::Cell;

thread_local!(pub static A: Cell<u64> = const { Cell::new(0) });