[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-nameof-01.cs
1 class X
2 {
3         public static int Main ()
4         {
5                 const string s = nameof (X);
6                 System.Console.WriteLine (s);
7                 if (s != "X")
8                         return 1;
9
10                 return 0;
11         }
12 }