This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / tests / test-58.cs
1 using System;
2 using System.Reflection;
3
4 public class Blah {
5         
6         public static int Main ()
7         {
8                 unsafe {
9                         int* i;
10                         int foo = 10;
11
12                         void* bar;
13
14                         i = &foo;
15
16                         bar = i;
17                         
18                         Console.WriteLine ("Address : {0}", (int) i);
19                 }
20
21                 return 0;
22         }       
23 }
24
25