[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[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];