use Paolo's benchmark
[mono.git] / mono / benchmark / valuetype3.cs
diff --git a/mono/benchmark/valuetype3.cs b/mono/benchmark/valuetype3.cs
deleted file mode 100644 (file)
index f92ea18..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-
-public class ValueType2
-{
-       static int Main ()
-       {
-               Blah a = new Blah ("abc", 1);
-               Blah b = new Blah (string.Format ("ab{0}", 'c'), 2);
-
-               for (int i = 0; i < 1000000; i++)
-                       a.Equals (b);
-
-               return 0;
-       }
-
-       struct Blah
-       { 
-               public string s;
-               public int i;
-
-               public Blah (string s, int k)
-               {
-                       this.s = s;
-                       i = k;
-               }
-       }
-}
-