Update pipeline-netcore-runtime.yml
[mono-project.git] / mono / benchmark / vtype1.cs
bloba6176c0ad5887f733c521a16531bd08aa5d7a356
1 using System;
3 public struct TestResult
5 public TestResult(int x) {
6 a=x;
9 public int a;
12 public class Test
14 static int Main ()
16 TestResult x;
18 for (int i = 0; i < 500000000; i++) {
19 //x = new TestResult(i, 0m);
20 x = new TestResult(i);
23 return 0;