Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0695-5.cs
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
3
4 interface IA<T>
5 {
6 }
7
8 interface IB<T> : IA<T>
9 {
10 }
11
12 class C<T1, T2> : IA<T1>, IB<IA<T2>>
13 {
14 }