"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0695-3.cs
blobd352d9936b3c3f34ed3b873639a514cdd65be370
1 // CS0695: `C<X,Y>' cannot implement both `I<X>' and `I<K<Y>>' because they may unify for some type parameter substitutions
2 // Line: 10
4 interface I<X>
5 { }
7 interface K<X>
8 { }
10 class C<X,Y> : I<X>, I<K<Y>>
11 { }