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

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

diff --git a/mcs/work/test-martin-7.cs b/mcs/work/test-martin-7.cs
deleted file mode 100644 (file)
index aba3e9d..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-// Bug #79702
-public delegate void FooHandler();
-
-public class X
-{
-       private string a;
-
-       public X(string a)
-       {
-               this.a = a;
-       }
-
-       static void Main()
-       {
-       }
-}
-
-public class Y : X
-{
-       private Z a;
-       
-       public Y(Z a) : base(a.A)
-       {
-               this.a = a;
-
-               FooHandler handler = delegate {
-                       a.Hello();
-               };
-       }
-}
-
-public class Z
-{
-       public string A;
-       
-       public void Hello ()
-       {
-       }
-}