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