about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-08-24 02:34:52 +0200
committerGitHub <noreply@github.com>2020-08-24 02:34:52 +0200
commitc26a8d57726e36f07b62f41a4feb1ced7f012159 (patch)
tree7622c80f7029d536c91aba0d1349f05399cdcb94
parent9ad17b9ca7a0fce32abf4c85ee38ed14aefe39cf (diff)
downloadrust-c26a8d57726e36f07b62f41a4feb1ced7f012159.tar.gz
rust-c26a8d57726e36f07b62f41a4feb1ced7f012159.zip
add issue number
-rw-r--r--library/alloc/src/sync.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/sync.rs b/library/alloc/src/sync.rs
index 4ac7dc4d890..ecc342d6ba7 100644
--- a/library/alloc/src/sync.rs
+++ b/library/alloc/src/sync.rs
@@ -349,7 +349,7 @@ impl<T> Arc<T> {
     /// });
     /// ```
     #[inline]
-    #[unstable(feature = "arc_new_cyclic", issue = "none")]
+    #[unstable(feature = "arc_new_cyclic", issue = "75861")]
     pub fn new_cyclic(data_fn: impl FnOnce(&Weak<T>) -> T) -> Arc<T> {
         // Construct the inner in the "uninitialized" state with a single
         // weak reference.