[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-58.cs
1 // Compiler options: -unsafe
2
3 using System;
4 using System.Reflection;
5
6 public class Blah {
7         
8         public static int Main ()
9         {
10                 unsafe {
11                         int* i;
12                         int foo = 10;
13
14                         void* bar;
15
16                         i = &foo;
17
18                         bar = i;
19                         
20                         Console.WriteLine ("Address : {0}", (int) i);
21                 }
22
23                 return 0;
24         }       
25 }
26
27