[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-ref-11.cs
blob8d392a77d07258f1ae2023fe9c38d551fbca3974
1 class Program
3 static int x;
4 static int y;
6 public static int Main ()
8 bool b = false;
9 ref int targetBucket = ref b ? ref x : ref y;
11 return 0;