Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-423.cs
1 // Compiler options: -unsafe
2
3 unsafe class Test
4
5         static void lowLevelCall (int *pv) { }
6
7         static void Func (out int i)
8         { 
9                 fixed(int *pi = &i)
10                         lowLevelCall (pi);
11         }
12
13         public static void Main ()
14         {
15                 int i = 0;
16                 Func (out i);
17         }
18 }
19