[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-11.cs
1 using System;
2 using System.IO;
3
4 public class Test {
5
6         public static int boxtest ()
7         {
8                 int i = 123;
9                 object o = i;
10 //              int j = (int) o;
11
12 //              if (i != j)
13 //                      return 1;
14                 
15                 return 0;
16         }
17
18         public static int Main () {
19                 if (boxtest () != 0)
20                         return 1;
21
22                 
23                 return 0;
24         }
25 }
26
27