[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0103-17.cs
1 // CS0103: The name `Foo' does not exist in the current context
2 // Line: 17
3
4 using static S;
5
6 class S
7 {
8         public void Foo ()
9         {
10         }
11 }
12
13 class Test
14 {
15         public static void Main ()
16         {
17                 Foo ();
18         }
19 }