You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have no idea what's causing this, but on the current nightly, this fails:
use std::thread::scoped;fnmain(){let _ = scoped(move || ());}
with "use of unstable library feature 'thread_local_internals'." Enabling the feature works, but this should be a stable function. Interestingly, tweaking the use works:
use std::thread;fnmain(){let _ = thread::scoped(move || ());}
I wonder if it's because there is a (private) sub-module called scoped which has a module-wide unstable marker.