[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0120-7.cs
1 // CS0120: An object reference is required to access non-static member `MemRefMonoBug.String'
2 // Line: 11
3
4 using System;
5
6 public class MemRefMonoBug {
7         private string String;  // this member has the same name as System.String class
8         public static void Main ()
9         {
10                 new MemRefMonoBug ().String = "";       // this line causes no problem
11                 String = "";    // mcs crashes in this line
12         }
13 }
14