[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0029-20.cs
1 // CS0029: Cannot implicitly convert type `A<int>.B<long>' to `A<long>.B<long>'
2 // Line: 14
3
4 class A<T>
5 {
6         public class B<U>
7         {
8         }
9 }
10
11 class Test
12 {
13         static A<int>.B<long> a;
14         static A<long>.B<long> b = a;
15 }