Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-exmethod-04.cs
1 // Compiler options: -r:gtest-exmethod-04-lib.dll
2
3 namespace A
4 {
5         public static class Test
6         {
7                 public static string Test_1 (this bool t)
8                 {
9                         return ":";
10                 }
11         }
12 }
13
14 namespace B
15 {
16         using A;
17         
18         public class M
19         {
20                 public static void Main ()
21                 {
22                         "".Test_1();
23                 }
24         }
25 }