Updated with review feedback.
[mono.git] / mcs / errors / cs0695-7.cs
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
3
4 class A<T>
5 {
6         public interface IB
7         {
8         }
9 }
10
11 class C<T, U> : A<T>.IB, A<U>.IB
12 {
13 }