[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0695-4.cs
1 // CS0695: `C<X,Y>' cannot implement both `I<K<Y>>' and `I<X>' because they may unify for some type parameter substitutions
2 // Line: 10
3
4 interface I<X>
5 { }
6
7 interface K<X>
8 { }
9
10 class C<X,Y> : I<K<Y>>, I<X>
11 { }