[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-515.cs
blob95adf6258b1264148453baa8e247c3a80836f523
1 class X {
2 public static void Main ()
4 int i = 0;
5 goto a;
6 b:
7 if (++ i > 1)
8 throw new System.Exception ("infloop!!!");
9 return;
11 goto b;