[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-135.cs
blob7456f7b63cae55e23b91035414b26140fbab4801
1 using System;
3 class X
5 public static void Main ()
7 int? a = null;
8 int b = 3;
9 long? c = a;
10 Console.WriteLine (c);
11 long? d = b;
12 byte? f = (byte?) d;