Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-optional-29.cs
1 using System;
2 using System.Collections.Generic;
3
4 class X
5 {
6         public X (int i = 1, params string[] preprocessorSymbols)
7         {
8         }
9
10         public X (int i = 1, List<string> s = null)
11         {
12         }
13
14         public static void Main ()
15         {
16                 new X ();
17         }
18 }