[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs8174.cs
1 // CS8174: A declaration of a by-reference variable must have an initializer
2 // Line: 8
3
4 class X
5 {
6         public static void Main ()
7         {
8                 ref int j;
9         }
10 }