// CS0695: `C' cannot implement both `A.IB' and `A.IB' because they may unify for some type parameter substitutions // Line: 11 class A { public interface IB { } } class C : A.IB, A.IB { }