11 lines
158 B
C#
Raw Normal View History

// CS1525: Unexpected symbol `out'
// Line: 8
public class Test
{
public static void Main ()
{
object[] x = new object[] { 0, out i};
}
}