On Sunday, 5 May 2019 at 08:24:29 UTC, Vladimirs Nordholm wrote:
> Hello.
>
> I have dub dependency which has a `shared static this()`.
>
> In my project, can I run code code before the dependency's 
> `shared static this()`?
This might work:
pragma(crt_constructor)
extern(C)
void early_init()
{
}