Skip to content

Commit cf40292

Browse files
committed
Link tracking issue for pin_deref_mut
1 parent b5e5a18 commit cf40292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/pin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ impl<'a, P: DerefMut> Pin<&'a mut Pin<P>> {
810810
/// move in the future, and this method does not enable the pointee to move. "Malicious"
811811
/// implementations of `P::DerefMut` are likewise ruled out by the contract of
812812
/// `Pin::new_unchecked`.
813-
#[unstable(feature = "pin_deref_mut", issue = "none")]
813+
#[unstable(feature = "pin_deref_mut", issue = "86918")]
814814
#[inline(always)]
815815
pub fn as_deref_mut(self) -> Pin<&'a mut P::Target> {
816816
// SAFETY: What we're asserting here is that going from

0 commit comments

Comments
 (0)