blob: bebaa7754dd5a55dd061beac22bbdb5a63b8661e [file] [log] [blame]
#![crate_type = "lib"]
use std::cell::Cell;
thread_local!(pub static A: Cell<u64> = const { Cell::new(0) });