Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / profiler / test-alloc.cs
1 using System;
2
3 class T {
4
5         static int count = 1000000;
6         static void Main (string[] args) {
7                 if (args.Length > 0)
8                         count = int.Parse (args [0]);
9                 for (int i = 0; i < count; ++i) {
10                         object o = new object ();
11                 }
12         }
13 }
14