[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-878.cs
blob659b77a72cb2e0710f56e742f7b22ca84bb90ba3
1 using System;
3 public class Tests
5 public static int Main ()
7 return 0;
10 void Test1 ()
12 int a;
13 if (true) {
14 a = 0;
15 } else {
16 a = 1;
19 Console.WriteLine (a);
22 void Test2 ()
24 int a;
25 if (false) {
26 a = 0;
27 } else {
28 a = 1;
31 Console.WriteLine (a);