Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-625.cs
1 struct S
2 {
3         public static bool operator true (S? S)
4         {
5                 return true;
6         }
7
8         public static bool operator false (S? S)
9         {
10                 return true;
11         }
12 }
13
14 class P
15 {
16         static void Main ()
17         {
18                 if (new S? ()) {
19                 }
20         }
21 }