[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0120-16.cs
1 // CS0120: An object reference is required to access non-static member `App.Test'
2 // Line: 15
3
4 class App
5 {
6         Test a = new Test ();
7
8         public Test Test
9         {
10                 get { return a; }
11         }
12
13         public static void Main (string[] args)
14         {
15                 Test.Run ();
16         }
17 }
18
19 class Test
20 {
21         public void Run () { }
22 }