about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorMazdak <twingoow@gmail.com>2017-11-22 07:21:30 +0100
committerMazdak <twingoow@gmail.com>2017-11-22 07:21:30 +0100
commitbc18d99232b4d049e24d64ae228f0ee0c01fcebd (patch)
tree54f70e064486556c30f47eaddb34a3e8b0ca7844 /src/liballoc
parent46800ab135f70d8869e58e4163730ba2b38006ba (diff)
downloadrust-bc18d99232b4d049e24d64ae228f0ee0c01fcebd.tar.gz
rust-bc18d99232b4d049e24d64ae228f0ee0c01fcebd.zip
Box::leak: update unstable issue number (46179).
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index c76f51057ff..7910c6b61f3 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -409,7 +409,7 @@ impl<T: ?Sized> Box<T> {
     /// }
     /// ```
     #[unstable(feature = "box_leak", reason = "needs an FCP to stabilize",
-               issue = "0")]
+               issue = "46179")]
     #[inline]
     pub fn leak<'a>(b: Box<T>) -> &'a mut T
     where