```d interface IScene{void initialize();} abstract class AScene : IScene{} class MainScene : AScene{} void main() { new MainScene().initialize(); } ``` Really sick, this has been happening for some time with me, it sigsegfaults and I'm only able to find the error via the debugger.
*** This issue has been marked as a duplicate of issue 21321 ***