[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0216.cs
1 // CS0216: The operator `X.operator <(X, int)' requires a matching operator `>' to also be defined
2 // Line: 5
3
4 class X {
5         public static X operator < (X a, int b)
6         {
7                 return null;
8         }
9
10         static void Main () {
11         }
12 }
13