New tests.
[mono.git] / mcs / tests / gtest-optional-08.cs
1 public class Tests
2 {
3         string s;
4         
5         private Tests (string arg = "long")
6         {
7                 this.s = arg;
8         }
9         
10         public Tests (int other)
11         {
12         }
13         
14         public static int Main ()
15         {
16                 var v = new Tests ();
17                 if (v.s != "long")
18                         return 1;
19                 
20                 return 0;
21         }
22 }