[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1067.cs
1 // CS1067: Partial declarations of `I<T>' must have the same type parameter variance modifiers
2 // Line: 8
3
4 partial interface I<in T>
5 {
6 }
7
8 partial interface I<out T>
9 {
10 }