// #99269 // check-pass #![warn(unused_must_use)] unsafe fn free(ptr: *mut T) { Box::from_raw(ptr); //~ WARNING unused return value } fn main() {}