[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0631-3.cs
1 // CS0631: The parameter modifier `ref' is not valid in this context
2 // Line: 5
3
4 class X {
5         public static X operator < (ref X a, int b)
6         {
7                 return null;
8         }
9 }