[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0120-13.cs
1 // CS0120: An object reference is required to access non-static member `C.Test(string)'
2 // Line: 8
3
4 class C
5 {
6         static void Test (int i)
7         {
8                 Test ("a");
9         }
10         
11         void Test (string s)
12         {
13         }
14 }