Pure-D / workspace-d

CLI deprecated, API + functionality moved into https://github.com/Pure-D/serve-d
MIT License
75 stars 15 forks source link

Implement interface inserts at wrong location #106

Closed WebFreak001 closed 4 years ago

WebFreak001 commented 4 years ago

I just had a case where I had

interface MyInterface
{
    void foo();
}

class ImplA : MyInterface
{

}

class ImplB : MyInterface
{
    void foo() {}
}

where I tried to implement MyInterface on ImplA, but it inserted the content in ImplB