2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-04.cs
blob48ab1aa5eba40c17d0644e7fe052257d8ce0716d
1 // Compiler options: -r:gtest-exmethod-04-lib.dll
3 namespace A
5 public static class Test
7 public static string Test_1 (this bool t)
9 return ":";
14 namespace B
16 using A;
18 public class M
20 public static void Main ()
22 "".Test_1();