Skip to content

Commit 1d9be66

Browse files
committed
Add tracking issue number
1 parent fc4056e commit 1d9be66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/mem/manually_drop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ impl<T> ManuallyDrop<T> {
217217
///
218218
#[must_use = "if you don't need the value, you can use `ManuallyDrop::drop` instead"]
219219
#[stable(feature = "manually_drop_take", since = "1.42.0")]
220-
#[rustc_const_unstable(feature = "const_manually_drop_take", issue = "none")]
220+
#[rustc_const_unstable(feature = "const_manually_drop_take", issue = "148773")]
221221
#[inline]
222222
pub const unsafe fn take(slot: &mut ManuallyDrop<T>) -> T {
223223
// SAFETY: we are reading from a reference, which is guaranteed

0 commit comments

Comments
 (0)