[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-anon-120.cs
1 using System;
2
3 class C<T>
4 {
5         public static void Foo<U> (U arg)
6         {
7                 Action a = () => C<U>.Run ();
8                 a ();
9         }
10         
11         static void Run ()
12         {
13         }
14 }
15
16 class A
17 {
18         public static void Main ()
19         {
20                 C<int>.Foo<long> (8);
21         }
22 }