**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0571.cs
blob1b719f10f0495a354a82e97814d06cb28c678778
1 // cs0571.cs: 'MainClass.Value.get' : cannot explicitly call operator or accessor
2 // Line: 12
4 class MainClass {
5 static int Value {
6 get {
7 return 1;
11 public static void Main() {
12 int value = get_Value();