summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-11.cs
blob: 8e20a8ffcc5de5fd8ff240e8d96add95b03823a2 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1525: Unexpected symbol `out'
// Line: 8

public class Test
{
	public static void Main ()
	{
                object[] x = new object[] { 0, out i};
	}
}