2010-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / gcs0695.cs
1 // gcs0695.cs: `A<X,Y>' cannot implement both `I<Y>' and `I<X>' because they may unify for some type parameter substitutions
2 // Line: 7
3
4 interface I<X>
5 { }
6
7 class A<X,Y> : I<X>, I<Y>
8 { }