Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / gtest-625.cs
blobd733a809dc92a14e5dfe9e32889545f6644b11f5
1 struct S
3 public static bool operator true (S? S)
5 return true;
8 public static bool operator false (S? S)
10 return true;
14 class P
16 static void Main ()
18 if (new S? ()) {