Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

DCE works incorrectly for derived interface implementation #1033

Open
iskiselev opened this issue Feb 1, 2017 · 0 comments
Open

DCE works incorrectly for derived interface implementation #1033

iskiselev opened this issue Feb 1, 2017 · 0 comments
Assignees
Labels

Comments

@iskiselev
Copy link
Member

DCE may remove used interface method in next situation:

public interface IUsedInterface {
   void UsedInterfaceMethod();
}

public class Base {
   public void UsedInterfaceMethod() {
   }
}

public class Derived : Base, IUsedInterface  {
}
@iskiselev iskiselev self-assigned this Feb 1, 2017
@kg kg added the Bug label Feb 24, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants