Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-153.cs
1 #define DEBUG
2 using System;
3 using System.Text;
4 using System.Diagnostics;
5
6 class Z
7 {
8         static public void Test2 (string message, params object[] args)
9         {
10         }
11
12         static public void Test (string message, params object[] args)
13         {
14                 Test2 (message, args);
15         }
16
17         public static int Main ()
18         {
19                 Test ("TEST");
20                 Test ("Foo", 8);
21                 Test ("Foo", 8, 9, "Hello");
22                 return 0;
23         }
24 }