[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-165.cs
1 // Compiler options: -r:gtest-165-lib.dll
2
3 class C
4 {
5         public static int Main ()
6         {
7                 var a = new A<string>();
8                 if (a ["s"] != 2)
9                         return 1;
10                 
11                 return 0;
12         }
13 }