[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-365.cs
blobccd0d915fa2ae0fb2b40558f97e1ec1c53d7be64
1 using System;
3 namespace B
5 class Program
7 public static int Main()
9 int? i = 0;
10 bool b = i == (int?)null;
11 if (b)
12 return 1;
14 if (i == (int?)null)
15 return 2;
17 Console.WriteLine (b);
18 return 0;