update
[mono.git] / mcs / errors / cs0216.cs
1 // cs0216.cs: If you define operator <, you also need to define >
2 // Line:
3 class X {
4         public static X operator < (X a, int b)
5         {
6                 return null;
7         }
8
9         static void Main () {
10         }
11 }
12