Switch to compiler-tester
[mono.git] / mcs / tests / gen-15.cs
diff --git a/mcs/tests/gen-15.cs b/mcs/tests/gen-15.cs
deleted file mode 100644 (file)
index 8f4e089..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Very simple example of a generic method.
-
-class Stack<S>
-{
-       public static void Hello<T,U> (S s, T t, U u)
-       {
-               U v = u;
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-       }
-}