1shared void function() sharedStaticDtorHook;
2shared void function() staticDtorHook;
3shared static ~this() { sharedStaticDtorHook(); }
4static ~this() { staticDtorHook(); }
5