Copied remotely
[mono.git] / mcs / errors / cs0676-2.cs
1 // Compiler options: -unsafe
2
3 unsafe class XX {
4         static volatile int j;
5
6         static void X (ref int a)
7         {
8         }
9         
10         static void Main ()
11         {
12                 X (ref j);
13         }
14 }