Files
linux-packaging-mono/mcs/errors/cs1525-35.cs

11 lines
138 B
C#
Raw Normal View History

// CS1525: Unexpected symbol `[', expecting `{'
// Line: 8
class Test
{
static void Main ()
{
var a = new [][] { };
}
}