5 public static void test0 () {
8 public static void test1 (int a
) {
11 public static void test2 (int a
, int b
) {
14 public static void test3 (int a
, int b
, int c
) {
17 public static void test4 (int a
, int b
, int c
, int d
) {
20 public static int Main (string[] args
) {
24 repeat
= Convert
.ToInt32 (args
[0]);
26 Console
.WriteLine ("Repeat = " + repeat
);
28 for (int i
= 0; i
< repeat
; i
++)
29 for (int j
= 0; j
< 500000000; j
++)