Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1525-11.cs
1 // CS1525: Unexpected symbol `out'
2 // Line: 8
3
4 public class Test
5 {
6         public static void Main ()
7         {
8                 object[] x = new object[] { 0, out i};
9         }
10 }