2022-07-15 14:33:44 +02:00

5 lines
171 B
D

shared void function() sharedStaticDtorHook;
shared void function() staticDtorHook;
shared static ~this() { sharedStaticDtorHook(); }
static ~this() { staticDtorHook(); }