[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / gtest-optional-12.cs
blobf08e34bd57412a968788bb6692e65580a4f4c378
1 using System;
3 public class C
5 static int M (string s = "s", int k = 0, params int[] args)
7 return args[1];
10 public static int Main ()
12 if (M (args: new int[] { 10, 20, 30 }) != 20)
13 return 1;
15 return 0;