[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-exmethod-05.cs
1
2
3 namespace A
4 {
5         public static class Test_A
6         {
7                 public static string Test_1 (this string s)
8                 {
9                         return ":";
10                 }
11         }
12 }
13
14 namespace A
15 {
16         public static partial class Test_B
17         {
18                 public static string Test_2 (this string s)
19                 {
20                         return ":";
21                 }
22         }
23 }
24
25 namespace B
26 {
27         using A;
28         
29         public class M
30         {
31                 public static void Main ()
32                 {
33                         "".Test_1();
34                         "".Test_2();
35                 }
36         }
37 }