cs0216.cs 136 B

12345678
  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. }
  7. }