Switch to compiler-tester
[mono.git] / mcs / tests / gen-48.cs
diff --git a/mcs/tests/gen-48.cs b/mcs/tests/gen-48.cs
deleted file mode 100644 (file)
index b1335e2..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-// This fixed a problem in the JIT.
-
-public class Stack<T>
-{
-       T[] data;
-
-       public Stack ()
-       {
-               data = new T [10];
-       }
-
-       public void Add (T t)
-       {
-               data [0] = t;
-       }
-}
-
-struct Foo
-{
-       int a;
-}
-
-class X
-{
-       static void Main ()
-       {
-               Foo foo = new Foo ();
-               Stack<Foo> stack = new Stack<Foo> ();
-               stack.Add (foo);
-       }
-}