[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-lambda-29.cs
1 using System;
2
3 class C<T>
4 {
5 }
6
7 class A
8 {
9         public static void Main ()
10         {
11                 M1 ((int[][] arg) => { });
12                 M2 ((C<short>[] arg) => { });
13                 M3 ((C<short[]>[] arg) => { });
14         }
15
16         static void M1<T> (Action<T[][]> arg)
17         {
18         }
19
20         static void M2<T> (Action<C<T>[]> arg)
21         {
22         }
23
24         static void M3<T> (Action<C<T[]>[]> arg)
25         {
26         }
27 }