This commit is contained in:
The Miri Cronjob Bot 2024-06-05 05:14:39 +00:00
parent 7950562142
commit 9a77692189

View file

@ -6,7 +6,5 @@ use std::ptr;
fn main() {
let mut not_a_bool = 13u8;
unsafe {
ptr::drop_in_place(&mut not_a_bool as *mut u8 as *mut bool)
};
unsafe { ptr::drop_in_place(&mut not_a_bool as *mut u8 as *mut bool) };
}