We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc4056e commit 1d9be66Copy full SHA for 1d9be66
library/core/src/mem/manually_drop.rs
@@ -217,7 +217,7 @@ impl<T> ManuallyDrop<T> {
217
///
218
#[must_use = "if you don't need the value, you can use `ManuallyDrop::drop` instead"]
219
#[stable(feature = "manually_drop_take", since = "1.42.0")]
220
- #[rustc_const_unstable(feature = "const_manually_drop_take", issue = "none")]
+ #[rustc_const_unstable(feature = "const_manually_drop_take", issue = "148773")]
221
#[inline]
222
pub const unsafe fn take(slot: &mut ManuallyDrop<T>) -> T {
223
// SAFETY: we are reading from a reference, which is guaranteed
0 commit comments