// CS0695: `C' cannot implement both `IA' and `IB>' because they may unify for some type parameter substitutions // Line: 12 interface IA { } interface IB : IA { } class C : IA, IB> { }