5 public static int test0 ()
9 public static int test1 (int a
)
14 public static int test2 (int a
, int b
)
16 return test3 (a
, b
, 3);
19 public static int test3 (int a
, int b
, int c
)
21 return test4 (a
, b
, c
, 4);
24 public static int test4 (int a
, int b
, int c
, int d
)
29 public static int run ()
34 public static int Main (string[] args
) {
38 repeat
= Convert
.ToInt32 (args
[0]);
40 Console
.WriteLine ("Repeat = " + repeat
);
42 for (int i
= 0; i
< repeat
; i
++)
43 for (int j
= 0; j
< 500000000; j
++)