Make note about static and dtors

Fixes #25851
This commit is contained in:
Steve Klabnik 2015-06-09 16:30:39 -04:00
parent 7b0f2af27f
commit 9db9449836

View File

@ -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