[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-419.cs
blob4d20d23d6bd8bf73543b358a58bf84e300eda67b
1 using System;
3 class Program
5 public static int Main ()
7 int? i = ((int?) -4);
8 int? i2 = (int?) +4;
9 object o = (object) (int?) 42;
11 return (bool) Test ("True") == true ? 0 : 1;
14 static object Test (string s)
16 return (!string.IsNullOrEmpty (s)) ? (bool?) bool.Parse (s) : null;