[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0695-6.cs
1 // CS0695: `Test<T>.TestN' cannot implement both `C<T>.I' and `C<string>.I' because they may unify for some type parameter substitutions
2 // Line: 17
3
4 class C<T>
5 {
6         public interface I
7         {
8         }
9         
10         public class N : C<string>
11         {
12         }
13 }
14
15 class Test<T> : C<T>
16 {
17         class TestN : I, N.I
18         {
19         }
20 }