Switch to compiler-tester
[mono.git] / mcs / tests / gen-122.cs
diff --git a/mcs/tests/gen-122.cs b/mcs/tests/gen-122.cs
deleted file mode 100644 (file)
index 2ec8725..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-    class Test
-    {
-        static void Main(string[] args)
-        {
-            A<int> a = new A<int>(new A<int>.B(D), 3);
-            a.Run();
-        }
-        public static void D(int y)
-        {
-            System.Console.WriteLine("Hello " + 3);
-        }
-    }
-    class A<T>
-    {
-        public delegate void B(T t);
-
-        protected B _b;
-        protected T _value;
-
-        public A(B b, T value)
-        {
-          _b = b;
-          _value = value;
-      }
-        public void Run()
-        {
-            _b(_value);
-        }
-    }
-