[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0571.cs
1 // CS0571: `MainClass.Value.get': cannot explicitly call operator or accessor
2 // Line: 12
3
4 class MainClass {
5         static int Value {
6                 get {
7                         return 1;
8                 }
9         }
10         
11         public static void Main() {
12                 int value = get_Value();
13         }
14 }