[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0220.cs
blobbefd46292c3605de7cc52d4498b007af8058358e
1 // CS0220: The operation overflows at compile time in checked mode
2 // Line: 7
4 public class MainClass {
5 static void Main () {
6 const long a = long.MaxValue;
7 long b = 2 * a;