New test.
[mono.git] / mcs / errors / cs0216-2.cs
1 // cs0216-2.cs: The operator `X.operator true(X)' requires a matching operator `false' to also be defined
2 // Line:  4
3 class X {
4         public static bool operator true (X i)
5         {
6                 return true;
7         }
8
9         static void Main ()
10         {
11         }
12 }