[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-362.cs
1 class C
2 {
3         static void Assert<T> (T a)
4         {
5         }
6
7         static void Assert<T> (T a, T b)
8         {
9         }
10         
11         public static int Main ()
12         {
13                 Assert (new object [,] { { 1, 2 }, { "x", "z" } });
14                 Assert (new object (), "a");
15                 
16                 return 0;
17         }
18 }