cleol
[mcs.git] / errors / cs0023-14.cs
blob63f11633c9fc8e9b3fc843989b133710b1400ff2
1 // CS0023: The `++' operator cannot be applied to operand of type `bool'
2 // Line: 13
4 public class C{
5 public static bool Foo{
6 get{
7 return false;
9 set{
12 public static void Main(){
13 Foo++;