We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23d4d77 commit f6747b0Copy full SHA for f6747b0
library/core/src/ptr/mod.rs
@@ -456,10 +456,6 @@ mod mut_ptr;
456
/// dropped. Read operations may be UB based on library invariants of that type,
457
/// for example reading the value pointed to by a dropped `Box<T>` is a use-after-free.
458
///
459
-/// Having an `&` or `&mut` reference to the pointed-to value after calling [`drop_in_place()`]
460
-/// is still sound as long as it is not read from (in which case the soundness of the operation
461
-/// depends on the specific type).
462
-///
463
/// Note that even if `T` has size `0`, the pointer must be non-null and properly aligned.
464
465
/// [valid]: self#safety
0 commit comments