Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-235.cs
1 //
2 // Compilation test: bug #47234
3 //
4 public class T {
5
6         static void Foo (T t, T tt)
7         {
8         }
9
10         static void Foo (params object[] theParams)
11         {
12         }
13
14         public static int Main()
15         {
16                 Foo (new T (), null);
17                 return 0;
18         }
19 }
20
21
22
23
24
25