We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9efbaf commit 5bd5781Copy full SHA for 5bd5781
library/std/src/thread/scoped.rs
@@ -288,7 +288,7 @@ impl<'env> fmt::Debug for Scope<'env> {
288
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
289
f.debug_struct("Scope")
290
.field("num_running_threads", &self.data.num_running_threads.load(Ordering::Relaxed))
291
- .field("a_thread_panicked", &self.data.a_thread_panicked)
+ .field("a_thread_panicked", &self.data.a_thread_panicked.load(Ordering::Relaxed))
292
.field("main_thread", &self.data.main_thread)
293
.finish_non_exhaustive()
294
}
0 commit comments