[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0695-5.cs
blob3b962628625b8b33c30fa40a5e040daa727b8712
1 // CS0695: `C<T1,T2>' cannot implement both `IA<T1>' and `IB<IA<T2>>' because they may unify for some type parameter substitutions
2 // Line: 12
4 interface IA<T>
8 interface IB<T> : IA<T>
12 class C<T1, T2> : IA<T1>, IB<IA<T2>>