[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0023-14.cs
1 // CS0023: The `++' operator cannot be applied to operand of type `bool'
2 // Line: 13
3
4 public class C{
5   public static bool Foo{
6     get{
7       return false;
8     }
9     set{
10     }   
11   }
12   public static void Main(){
13     Foo++;
14   }
15 }