diff --git a/src/doc/trpl/const-and-static.md b/src/doc/trpl/const-and-static.md index 83461feba40..7d555b52a98 100644 --- a/src/doc/trpl/const-and-static.md +++ b/src/doc/trpl/const-and-static.md @@ -64,7 +64,10 @@ unsafe { [unsafe]: unsafe.html -Furthermore, any type stored in a `static` must be `Sync`. +Furthermore, any type stored in a `static` must be `Sync`, and may not have +a [`Drop`][drop] implementation. + +[drop]: drop.html # Initializing