Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / benchmark / stelemref.cs
1 using System;
2 class T {
3         static void Main () {
4                 int i = Environment.TickCount;
5                 new T ().X ();
6                 Console.WriteLine (Environment.TickCount - i);
7         }
8         
9         void X () {
10                 object [] x = new object [1];
11                 object o = new object ();
12                 for (int i = 0; i < 10000000; i ++)
13                         x [0] = o;
14         }
15 }