[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-371.cs
blob12675368d7b7bf0f827bf87a5b8dcb156e28780d
1 // Compiler options: -r:gtest-371-lib.dll
3 // Important test: Type inference
5 class X
7 public static void Main ()
9 Test<float,int> test = new Test<float,int> ();
10 test.Foo ("Hello World");
11 test.Foo (new long[] { 3, 4, 5 }, 9L);
12 test.Hello (3.14F, 9, test);
13 test.ArrayMethod (3.14F, (float) 9 / 3);