Switch to compiler-tester
[mono.git] / mcs / tests / gen-20.cs
diff --git a/mcs/tests/gen-20.cs b/mcs/tests/gen-20.cs
deleted file mode 100644 (file)
index d8f4992..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-struct Stack<S>
-{
-       public void Hello (S s)
-       { }
-}
-
-class X
-{
-       Stack<int> stack;
-
-       void Test ()
-       {
-               stack.Hello (3);
-       }
-
-       static void Main ()
-       { }
-}