-
-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Help infer may_dangle on type parameter of Punctuated iterator Drop i…
…mpls
- Loading branch information
Showing
3 changed files
with
90 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
use std::iter; | ||
use std::mem::ManuallyDrop; | ||
use std::ops::{Deref, DerefMut}; | ||
use std::option; | ||
use std::slice; | ||
|
||
#[repr(transparent)] | ||
pub(crate) struct NoDrop<T: ?Sized>(ManuallyDrop<T>); | ||
|
||
impl<T> NoDrop<T> { | ||
pub(crate) fn new(value: T) -> Self | ||
where | ||
T: TrivialDrop, | ||
{ | ||
NoDrop(ManuallyDrop::new(value)) | ||
} | ||
} | ||
|
||
impl<T: ?Sized> Deref for NoDrop<T> { | ||
type Target = T; | ||
fn deref(&self) -> &Self::Target { | ||
&self.0 | ||
} | ||
} | ||
|
||
impl<T: ?Sized> DerefMut for NoDrop<T> { | ||
fn deref_mut(&mut self) -> &mut Self::Target { | ||
&mut self.0 | ||
} | ||
} | ||
|
||
pub(crate) trait TrivialDrop {} | ||
|
||
impl<T> TrivialDrop for iter::Empty<T> {} | ||
impl<'a, T> TrivialDrop for slice::Iter<'a, T> {} | ||
impl<'a, T> TrivialDrop for slice::IterMut<'a, T> {} | ||
impl<'a, T> TrivialDrop for option::IntoIter<&'a T> {} | ||
impl<'a, T> TrivialDrop for option::IntoIter<&'a mut T> {} | ||
|
||
#[test] | ||
fn test_needs_drop() { | ||
use std::mem::needs_drop; | ||
|
||
struct NeedsDrop; | ||
|
||
impl Drop for NeedsDrop { | ||
fn drop(&mut self) {} | ||
} | ||
|
||
assert!(needs_drop::<NeedsDrop>()); | ||
|
||
// Test each of the types with a handwritten TrivialDrop impl above. | ||
assert!(!needs_drop::<iter::Empty<NeedsDrop>>()); | ||
assert!(!needs_drop::<slice::Iter<NeedsDrop>>()); | ||
assert!(!needs_drop::<slice::IterMut<NeedsDrop>>()); | ||
assert!(!needs_drop::<option::IntoIter<&NeedsDrop>>()); | ||
assert!(!needs_drop::<option::IntoIter<&mut NeedsDrop>>()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters