[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs8173.cs
1 // CS8173: The expression must be of type `long' because it is being assigned by reference
2 // Line: 11
3
4 public class X
5 {
6         int field;
7
8         public static void Main ()
9         {
10                 int i = 5;
11                 ref long j = ref i;
12         }
13 }