In ilasm/tests:
[mcs.git] / errors / cs0216.cs
blobcbe133a3af1c81ccb256cd7aa3d97a1139d298c2
1 // cs0216.cs: The operator `X.operator <(X, int)' requires a matching operator `>' to also be defined
2 // Line:
3 class X {
4 public static X operator < (X a, int b)
6 return null;
9 static void Main () {