[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0695-6.cs
blob26721c16d35920539a29be280c5ece8d858d0606
1 // CS0695: `Test<T>.TestN' cannot implement both `C<T>.I' and `C<string>.I' because they may unify for some type parameter substitutions
2 // Line: 17
4 class C<T>
6 public interface I
10 public class N : C<string>
15 class Test<T> : C<T>
17 class TestN : I, N.I