[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0150.cs
blobe515b4d9e5be8ccc1737686e22cc3bc936c21857
1 // CS0150: A constant value is expected
2 // Line : 12
4 using System;
6 public class Blah {
8 public static void Main ()
10 int foo = 6;
12 int [] i = new int [foo] { 0, 1, 2, 3, 4, 5 };