'interface' is already listed in interface list
An interface-inheritance list includes a duplicate. An interface can only be specified once in the inheritance list.
The following sample generates CS0528:
namespace x { public interface a { } public class b : a, a // CS0528 { public void Main() { } } }