New test.
authorMartin Baulig <martin@novell.com>
Wed, 29 Nov 2006 20:32:42 +0000 (20:32 -0000)
committerMartin Baulig <martin@novell.com>
Wed, 29 Nov 2006 20:32:42 +0000 (20:32 -0000)
svn path=/branches/martin/anonymous-methods2/work/; revision=68693

mcs/work/test-martin-8.cs [deleted file]

diff --git a/mcs/work/test-martin-8.cs b/mcs/work/test-martin-8.cs
deleted file mode 100644 (file)
index dadb22a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Bug #79972
-delegate void TestFunc<T>(T val);
-
-class A
-{
-       public A(TestFunc<int> func) { }
-
-       static void Main ()
-       { }
-}
-
-class TestClass
-{
-       readonly A a = new A(delegate(int a) { });
-       static void Func<T>(TestFunc<T> func) { }
-}