eol
[mcs.git] / tests / gtest-optional-08.cs
blobd148076049805189b8e5a4e617e951027cef5ef5
1 public class Tests
3 string s;
5 private Tests (string arg = "long")
7 this.s = arg;
10 public Tests (int other)
14 public static int Main ()
16 var v = new Tests ();
17 if (v.s != "long")
18 return 1;
20 return 0;