[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-exmethod-02.cs
1 // Compiler options: -r:gtest-exmethod-02-lib.dll -noconfig
2
3 using System;
4
5 public class M
6 {
7         public static void Main ()
8         {
9                 "foo".Test_1 ();
10         }
11 }
12
13 namespace N
14 {
15         public class M
16         {
17                 public static void Test2 ()
18                 {
19                         "foo".Test_1 ();
20                 }
21         }
22 }