cleol
[mcs.git] / tests / gtest-379.cs
blob5d770fdd31f7dfeffbf3745c9cca2833bd99fe94
1 struct S
3 public static bool operator == (S a, S b)
5 return true;
8 public static bool operator != (S a, S b)
10 return true;
14 public class C
16 static int Print (S? i)
18 if (i != null)
19 return 5;
21 return 0;
24 public static int Main ()
26 return Print (null);