2003-12-25 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / errors / cs0284.cs
1 // cs0284.cs: Can not create array with negative size
2 // Line: 7
3
4 class X {
5         static void Main ()
6         {
7                 int [] x = new int [-4];
8         }
9 }