Merge pull request #4202 from marek-safar/compression
[mono-project.git] / mcs / tests / dtest-048.cs
blobaa205bfa9a7e04f8db5fd05f8814581c83582181
1 using System;
2 class A
4 static int M (string s, object o)
6 return 1;
9 static int M (string s, params object[] o)
11 if (o != null)
12 return 2;
14 return 0;
17 public static int Main ()
19 if (M ("x", null) != 0)
20 return 1;
22 if (M ("x", (object[])null) != 0)
23 return 2;
25 if (M ("x", (dynamic)null) != 0)
26 return 3;
28 return 0;