Bump corefx
[mono-project.git] / mono / profiler / test-alloc.cs
blob3eb3509a7bb18a694d186fd62875ce051945fd3b
1 using System;
3 class T {
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 ();