Switch to compiler-tester
[mono.git] / mcs / tests / gen-16.cs
diff --git a/mcs/tests/gen-16.cs b/mcs/tests/gen-16.cs
deleted file mode 100644 (file)
index bf6b51b..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// A generic method may also use the type parameters
-// from its enclosing type.
-
-class Stack<S>
-{
-       public static void Hello<T> (S s, T t)
-       { }
-}
-
-class X
-{
-       Stack<int> stack;
-
-       static void Main ()
-       {
-       }
-}