mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
add test for may_dangle and ManuallyDrop
This commit is contained in:
parent
60a0782390
commit
967ebb9c3d
22
tests/ui/drop/dropck-eyepatch-manuallydrop.rs
Normal file
22
tests/ui/drop/dropck-eyepatch-manuallydrop.rs
Normal file
@ -0,0 +1,22 @@
|
||||
// check-pass
|
||||
//! This test checks that dropck knows that ManuallyDrop does not drop its field.
|
||||
#![feature(dropck_eyepatch)]
|
||||
|
||||
use std::mem::ManuallyDrop;
|
||||
|
||||
struct S<T>(ManuallyDrop<T>);
|
||||
|
||||
unsafe impl<#[may_dangle] T> Drop for S<T> {
|
||||
fn drop(&mut self) {}
|
||||
}
|
||||
|
||||
struct NonTrivialDrop<'a>(&'a str);
|
||||
impl<'a> Drop for NonTrivialDrop<'a> {
|
||||
fn drop(&mut self) {}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let s = String::from("string");
|
||||
let _t = S(ManuallyDrop::new(NonTrivialDrop(&s)));
|
||||
drop(s);
|
||||
}
|
Loading…
Reference in New Issue
Block a user