1 #[cfg(all(loom, test))]
2 macro_rules! thread_local {
3     ($($tts:tt)+) => { loom::thread_local!{ $($tts)+ } }
4 }
5