[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-45.cs
blob65a8268bffba89ea5ba7648b4b1beb76e78761e7
1 using System;
3 public class Blah {
5 private static int[] array = {0, 1, 2, 3};
7 private static int [,] bar = { {0,1}, {4,5}, {10,20} };
9 static string [] names = {
10 "Miguel", "Paolo", "Dietmar", "Dick", "Ravi"
13 public static int Main ()
15 int [] i = new int [4] { 0, 1, 2, 3 };
17 short [,] j = new short [4,2] { {0,1}, {2,3}, {4,5}, {6,7} };
19 ushort [] a = { 4, 5, 6, 7 };
21 long [,,] m = new long [2,3,2] {{{0,1}, {2,3}, {4,5}}, {{6,7}, {8,9}, {10,11}}};
23 int foo = 1;
24 int [] k = new int [] { foo, foo+1, foo+4 };
26 int [,] boo = new int [,] {{foo, foo+10}, {foo+3, foo+10}};
28 float [] f_array = new float [] { 1.23F, 4.5F, 6.24F };
30 double [] double_arr = new double [] { 34.4567, 90.1226, 54.9823 };
32 char [] c_arr = { 'A', 'B', 'C', 'M', 'R' };
34 byte [] b_arr = { 0, 3, 8, 10, 21 };
36 sbyte [] s_arr = { 10, 15, 30, 123 };
38 int[,,] ints = new int[,,] { };
40 if (a [2] != 6)
41 return 1;
43 if (s_arr [3] != 123)
44 return 2;
46 if (i [2] != 2)
47 return 1;
49 if (j [1,1] != 3)
50 return 1;
52 for (int t = 0; t < 4; ++t) {
53 if (array [t] != t)
54 return 1;
56 if (a [t] != (t + 4))
57 return 1;
60 if (bar [2,1] != 20)
61 return 1;
63 if (k [2] != 5)
64 return 1;
66 if (m [1,1,1] != 9)
67 return 1;
69 if (boo [0,1] != 11)
70 return 1;
72 if (f_array [0] != 1.23F)
73 return 1;
75 if (double_arr [1] != 90.1226)
76 return 1;
78 foreach (string s in names)
79 Console.WriteLine ("Hello, " + s);
81 if (names [0] != "Miguel")
82 return 1;
84 if (c_arr [4] != 'R')
85 return 2;
87 int count = 10;
89 int [] x = new int [count];
91 for (int idx = 0; idx < count; idx++)
92 x [idx] = idx + 1;
94 for (int idx = count; idx > 0; ){
95 idx--;
96 if (x [idx] != idx + 1)
97 return 12;
100 IntPtr [] arr = { new System.IntPtr (1) };
101 if (arr [0] != (IntPtr) 1)
102 return 13;
104 IntPtr [] arr_i = { System.IntPtr.Zero };
106 if (arr_i [0] != System.IntPtr.Zero)
107 return 14;
109 Console.WriteLine ("Array initialization test okay.");
111 return 0;