Switch to compiler-tester
[mono.git] / mcs / tests / gen-67.cs
diff --git a/mcs/tests/gen-67.cs b/mcs/tests/gen-67.cs
deleted file mode 100644 (file)
index 43df27f..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-class Test
-{
-       public delegate int Foo<T> (T t, T u);
-
-       public void Hello<U> (Foo<U> foo, U u)
-       { }
-}
-
-class X
-{
-       static int Add (int a, int b)
-       {
-               return a + b;
-       }
-
-       static void Main ()
-       {
-               Test test = new Test ();
-               test.Hello<int> (new Test.Foo<int> (Add), 5);
-       }
-}