[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-238.cs
1 // Compiler options: /r:gtest-238-lib.dll
2 // Dependencies: gtest-238-lib.cs
3 class X
4 {
5         public static int Main ()
6         {
7                 Foo<long> foo = new Foo<long> ();
8                 if (foo.Test (3) != 1)
9                         return 1;
10                 if (foo.Test (5L) != 2)
11                         return 2;
12                 return 0;
13         }
14 }