* CheckBox.cs: Do not change the status of a checkbox when there
[mono.git] / mcs / errors / cs0676-2.cs
1 unsafe class XX {
2         static volatile int j;
3
4         static void X (ref int a)
5         {
6         }
7         
8         static void Main ()
9         {
10                 X (ref j);
11         }
12 }