Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0187-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f82aaf690966f2dd750f50dcedefca05c6d661d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0187.cs: No such operator '++' defined for type 'bool'
// Line: 13

public class C{
  public static bool Foo{
    get{
      return false;
    }
    set{
    }	
  }
  public static void Main(){
    Foo++;
  }
}