[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-590.cs
blob96c276a5812d21bd92d01a97ee552a01eb5b91a6
1 using System;
3 enum E
8 class C
10 public static void Main ()
12 byte? foo = 0;
13 E e = 0;
14 var res = foo - e;
15 Console.WriteLine (res);
16 var res2 = e - foo;
17 Console.WriteLine (res2);
18 res = null;
19 res2 = null;