New test.
[mono.git] / mcs / tests / test-45.cs
1 using System;
2
3 public class Blah {
4
5         private static int[] array = {0, 1, 2, 3};
6
7         private static int [,] bar = { {0,1}, {4,5}, {10,20} };
8
9         static string [] names = {
10                 "Miguel", "Paolo", "Dietmar", "Dick", "Ravi"
11         };
12
13         public static int Main ()
14         {
15                 int [] i = new int [4] { 0, 1, 2, 3 };
16
17                 short [,] j = new short [4,2] { {0,1}, {2,3}, {4,5}, {6,7} };
18                 
19                 ushort [] a = { 4, 5, 6, 7 };
20
21                 long [,,] m = new long [2,3,2] {{{0,1}, {2,3}, {4,5}}, {{6,7}, {8,9}, {10,11}}};
22
23                 int foo = 1;
24                 int [] k = new int [] { foo, foo+1, foo+4 };
25
26                 int [,] boo = new int [,] {{foo, foo+10}, {foo+3, foo+10}};
27
28                 float [] f_array = new float [] { 1.23F, 4.5F, 6.24F };
29
30                 double [] double_arr = new double [] { 34.4567, 90.1226, 54.9823 };
31
32                 char [] c_arr = { 'A', 'B', 'C', 'M', 'R' };
33
34                 byte [] b_arr = { 0, 3, 8, 10, 21 };
35
36                 sbyte [] s_arr = { 10, 15, 30, 123 };
37                 
38                 if (a [2] != 6)
39                         return 1;
40
41                 if (s_arr [3] != 123)
42                         return 2;
43                 
44                 if (i [2] != 2)
45                         return 1;
46                 
47                 if (j [1,1] != 3)
48                         return 1;
49
50                 for (int t = 0; t < 4; ++t) {
51                         if (array [t] != t)
52                                 return 1;
53                         
54                         if (a [t] != (t + 4))
55                                 return 1;
56                 }
57
58                 if (bar [2,1] != 20)
59                         return 1;
60
61                 if (k [2] != 5)
62                         return 1;
63
64                 if (m [1,1,1] != 9)
65                         return 1;
66
67                 if (boo [0,1] != 11)
68                         return 1;
69
70                 if (f_array [0] != 1.23F)
71                         return 1;
72
73                 if (double_arr [1] != 90.1226)
74                         return 1;
75
76                 foreach (string s in names)
77                         Console.WriteLine ("Hello, " + s);
78
79                 if (names [0] != "Miguel")
80                         return 1;
81
82                 if (c_arr [4] != 'R')
83                         return 2;
84
85                 int count = 10;
86
87                 int [] x = new int [count];
88
89                 for (int idx = 0; idx < count; idx++)
90                         x [idx] = idx + 1;
91
92                 for (int idx = count; idx > 0; ){
93                         idx--;
94                         if (x [idx] != idx + 1)
95                                 return 12;
96                 }
97
98                 IntPtr [] arr = { new System.IntPtr (1) };
99                 if (arr [0] != (IntPtr) 1)
100                         return 13;
101
102                 IntPtr [] arr_i = { System.IntPtr.Zero };
103
104                 if (arr_i [0] != System.IntPtr.Zero)
105                         return 14;
106                 
107                 Console.WriteLine ("Array initialization test okay.");
108                                    
109                 return 0;
110         }
111 }