Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0248.cs
1 // CS0248: Cannot create an array with a negative size
2 // Line: 6
3
4 public class MainClass {
5         public static void Main () {
6                 byte[] byteArray = new byte[-1];
7         }
8 }
9
10