2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0216-2.cs
1 // cs0216: Missmatch of operators (true/false)
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 }