[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0248.cs
blobf7d8fb70a63e681b19830b2d95b2d2bef9baac99
1 // CS0248: Cannot create an array with a negative size
2 // Line: 6
4 public class MainClass {
5 public static void Main () {
6 byte[] byteArray = new byte[-1];