[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-optional-31.cs
blob9e7158ac2485225f2ca016eec734c09e85ebbd9c
1 using System;
3 class Test
5 public static int M (bool b = false)
7 Console.WriteLine ("PASS");
8 return 0;
11 public static int M (params string[] args)
13 Console.WriteLine ("FAIL");
14 return 1;
17 public static int Main ()
19 return M ();