https://issues.dlang.org/show_bug.cgi?id=16440
Issue ID: 16440 Summary: wrong code with -main -c -of Product: D Version: D2 Hardware: x86_64 OS: Linux Status: NEW Keywords: wrong-code Severity: normal Priority: P1 Component: dmd Assignee: nob...@puremagic.com Reporter: ag0ae...@gmail.com Found when working on rdmd. test.d. ---- import std.stdio; static this() { writeln("static this"); } unittest { writeln("unittest"); } ---- Prints nothing, should print "static this" and "unittest": ---- dmd -main -c -oftest.o -unittest test.d dmd test.o ./test ---- --