[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0708.cs
1 // CS0708: `StaticClass.i': cannot declare instance members in a static class
2 // Line: 6
3
4 static class StaticClass
5 {
6         public int i;
7 }