Skip to content

Commit 5bb9239

Browse files
committed
Auto merge of #53033 - RalfJung:manually_dro, r=SimonSapin
unsized ManuallyDrop I think this matches what @eddyb had in #52711 originally. ~~However, I have never added a `CoerceUnsized` before so I am not sure if I did this right. I copied the `unstable` attribute on the `impl` from elsewhere, but AFAIK it is useless because `impl`'s are insta-stable... so shouldn't this rather say "stable since 1.30"?~~ This is insta-stable and hence requires FCP, at least. Fixes #47034
2 parents a8763b5 + 5ee5a7e commit 5bb9239

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/libcore/mem.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,8 @@ pub fn discriminant<T>(v: &T) -> Discriminant<T> {
956956
#[stable(feature = "manually_drop", since = "1.20.0")]
957957
#[lang = "manually_drop"]
958958
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
959-
pub struct ManuallyDrop<T> {
959+
#[repr(transparent)]
960+
pub struct ManuallyDrop<T: ?Sized> {
960961
value: T,
961962
}
962963

@@ -990,7 +991,9 @@ impl<T> ManuallyDrop<T> {
990991
pub fn into_inner(slot: ManuallyDrop<T>) -> T {
991992
slot.value
992993
}
994+
}
993995

996+
impl<T: ?Sized> ManuallyDrop<T> {
994997
/// Manually drops the contained value.
995998
///
996999
/// # Safety
@@ -1006,7 +1009,7 @@ impl<T> ManuallyDrop<T> {
10061009
}
10071010

10081011
#[stable(feature = "manually_drop", since = "1.20.0")]
1009-
impl<T> Deref for ManuallyDrop<T> {
1012+
impl<T: ?Sized> Deref for ManuallyDrop<T> {
10101013
type Target = T;
10111014
#[inline]
10121015
fn deref(&self) -> &Self::Target {
@@ -1015,7 +1018,7 @@ impl<T> Deref for ManuallyDrop<T> {
10151018
}
10161019

10171020
#[stable(feature = "manually_drop", since = "1.20.0")]
1018-
impl<T> DerefMut for ManuallyDrop<T> {
1021+
impl<T: ?Sized> DerefMut for ManuallyDrop<T> {
10191022
#[inline]
10201023
fn deref_mut(&mut self) -> &mut Self::Target {
10211024
&mut self.value

src/libcore/tests/manually_drop.rs

+5
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,9 @@ fn smoke() {
2121

2222
let x = ManuallyDrop::new(TypeWithDrop);
2323
drop(x);
24+
25+
// also test unsizing
26+
let x : Box<ManuallyDrop<[TypeWithDrop]>> =
27+
Box::new(ManuallyDrop::new([TypeWithDrop, TypeWithDrop]));
28+
drop(x);
2429
}

0 commit comments

Comments
 (0)