summary refs log tree commit diff
path: root/src/test/codegen/auxiliary/thread_local_aux.rs
blob: 29b5e3ca244bf02eff41180eaf5e305d0832ac21 (plain)
1
2
3
4
5
6
#![crate_type = "lib"]
#![feature(thread_local_const_init)]

use std::cell::Cell;

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