[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0019-28.cs
1 // CS0019: Operator `>=' cannot be applied to operands of type `ulong' and `sbyte'
2 // Line: 7
3
4 class X {
5         bool ret (ulong u, sbyte s)
6         {
7                 return (u >= s);
8         }
9 }