Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / benchmark / boxtest.cs
1 using System;
2
3
4 public class Test {
5
6         public static int Main (string[] args) {
7                 object x = null;
8                 
9                 for (int i = 0 ; i < 5000000; i++) {
10                         x = i;
11                 }
12
13                 int j = (int)x;
14                 
15                 return 0;
16         }
17 }
18
19