[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-379.cs
1 struct S
2 {
3         public static bool operator == (S a, S b)
4         {
5                 return true;
6         }
7         
8         public static bool operator != (S a, S b)
9         {
10                 return true;
11         }
12 }
13
14 public class C
15 {
16         static int Print (S? i)
17         {
18                 if (i != null)
19                         return 5;
20                 
21                 return 0;
22         }
23         
24         public static int Main ()
25         {
26                 return Print (null);
27         }
28 }