Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-exmethod-42.cs
1 partial class C
2 {
3         public static void Foo (this int t)
4         {
5         }
6 }
7
8 static partial class C
9 {
10         public static void Foo ()
11         {
12         }
13 }
14
15 class Test
16 {
17         public static void Main ()
18         {
19                 1.Foo ();
20         }
21 }