diff --git a/library/std/src/thread/local.rs b/library/std/src/thread/local.rs index 7fdf03acc14d9..7dc6f5fb052d7 100644 --- a/library/std/src/thread/local.rs +++ b/library/std/src/thread/local.rs @@ -152,6 +152,7 @@ macro_rules! thread_local { // empty (base case for the recursion) () => {}; + // the `__thread_local_inner` macro is declared in `sys::common::thread_local` ($(#[$attr:meta])* $vis:vis static $name:ident: $t:ty = const { $init:expr }; $($rest:tt)*) => ( $crate::__thread_local_inner!($(#[$attr])* $vis $name, $t, const $init); $crate::thread_local!($($rest)*);