[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0117-7.cs
1 // CS0117: `A' does not contain a definition for `CODE'
2 // Line: 6
3
4 class X
5 {
6         public static void Foo (int i, string code = A.CODE)
7         {
8         }
9 }
10
11 class A
12 {
13 }