2002-06-25 Dick Porter <dick@ximian.com>
[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 }