about summary refs log tree commit diff
path: root/library/std/src/sync
diff options
context:
space:
mode:
authorGus Wynn <guswynn@gmail.com>2022-06-23 08:52:13 -0700
committerGus Wynn <guswynn@gmail.com>2022-06-23 08:52:13 -0700
commit029f9aa3bf2aa25a88df76fb34f332981ebfef7d (patch)
treedc37d1705c6be4a21cd308da779374dfffb8dd08 /library/std/src/sync
parent63d1c8623000782ebc1bb6ae662a10af9f067cab (diff)
downloadrust-029f9aa3bf2aa25a88df76fb34f332981ebfef7d.tar.gz
rust-029f9aa3bf2aa25a88df76fb34f332981ebfef7d.zip
add tracking issue for exclusive
Diffstat (limited to 'library/std/src/sync')
-rw-r--r--library/std/src/sync/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/mod.rs b/library/std/src/sync/mod.rs
index c70dcf7f66c..0c2ac8e10ce 100644
--- a/library/std/src/sync/mod.rs
+++ b/library/std/src/sync/mod.rs
@@ -155,7 +155,7 @@
 pub use alloc_crate::sync::{Arc, Weak};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::sync::atomic;
-#[unstable(feature = "exclusive_wrapper", issue = "none")]
+#[unstable(feature = "exclusive_wrapper", issue = "98407")]
 pub use core::sync::Exclusive;
 
 #[stable(feature = "rust1", since = "1.0.0")]