2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0216.cs
blob5c3b6783b66c68ee189df2a5b7c2e266f481da68
1 // CS0216: The operator `X.operator <(X, int)' requires a matching operator `>' to also be defined
2 // Line: 5
4 class X {
5 public static X operator < (X a, int b)
7 return null;
10 static void Main () {