[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs8172.cs
1 // CS8172: Cannot initialize a by-reference variable `j' with a value
2 // Line: 10
3
4 class X
5 {
6         static int f;
7
8         public static void Main ()
9         {
10                 ref int j = f;
11         }
12 }