[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-95.cs
1 class X {
2
3         double d = 0;
4
5         X ()
6         {
7         }
8
9         public static int Main ()
10         {
11                 X x = new X ();
12
13                 if (x.d != 0)
14                         return 1;
15
16                 return 0;
17         }
18 }