[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-671.cs
blob87395cdeb3e6c33033b6d8b3c24a9d86763feca0
1 using System;
3 class C
5 public static int Main ()
7 return Bar (null) ? 1 : 0;
10 static bool Bar (object t)
12 return t is object;