[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0695-7.cs
blob69321c0c6a433f657bf639bd45dd1b36d34bbf97
1 // CS0695: `C<T,U>' cannot implement both `A<T>.IB' and `A<U>.IB' because they may unify for some type parameter substitutions
2 // Line: 11
4 class A<T>
6 public interface IB
11 class C<T, U> : A<T>.IB, A<U>.IB