[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-620.cs
blob96b13184d1410789edc5ce16f26279f82e241fa6
1 //
2 // fixed
3 //
4 class X {
6 static void A (ref int a)
8 a++;
11 // Int32&
12 static void B (ref int a)
14 // Int32&&
15 A (ref a);
18 public static int Main ()
20 int a = 10;
22 B (ref a);
24 if (a == 11)
25 return 0;
26 else
27 return 1;