Box::leak: update unstable issue number (46179).

This commit is contained in:
Mazdak 2017-11-22 07:21:30 +01:00
parent 46800ab135
commit bc18d99232

View file

@ -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