Hello,

I am trying to use the std.log module that is here:

https://github.com/linkrope/log.d

And I encountered a segmentation fault using dmd 2.065 on a Linux 64 platform. The reduced test case is this:

//============================================================================
import std.stdio;
import std.log;

private class CHello {
        
        ~this() {
info("info - destructor"); //info, warning, error segfault; however, writefln works
        }
}

void main(string[] args) { CHello chello = new CHello(); }
//============================================================================

Is this a bug?

Reply via email to