sq / JSIL

CIL to Javascript Compiler

Home Page:http://jsil.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DCE works incorrectly for derived interface implementation

iskiselev opened this issue · comments

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  {
}