January 24, 2023
https://issues.dlang.org/show_bug.cgi?id=23653

          Issue ID: 23653
           Summary: Interface method not being detected as unimplemented
                    when using abstract class
           Product: D
           Version: D2
          Hardware: x86
                OS: All
            Status: NEW
          Severity: critical
          Priority: P1
         Component: dmd
          Assignee: nobody@puremagic.com
          Reporter: msnmancini@hotmail.com

```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.

--