Update pipeline-netcore-runtime.yml
[mono-project.git] / mono / benchmark / boxtest.cs
blobcde46ca3cdee462775e0c80abc772224559c5835
1 using System;
4 public class Test {
6 public static int Main (string[] args) {
7 object x = null;
9 for (int i = 0 ; i < 5000000; i++) {
10 x = i;
13 int j = (int)x;
15 return 0;