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

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

diff --git a/mcs/work/test-martin-11.cs b/mcs/work/test-martin-11.cs
deleted file mode 100644 (file)
index 8963a06..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-using System;
-
-delegate void Simple ();
-
-delegate Simple Foo ();
-
-class X
-{
-       public void Hello (long k)
-       { }
-
-       public void Test (int i)
-       {
-               Hello (3);
-               Foo foo = delegate {
-                       int a = i;
-                       Hello (4);
-                       return delegate {
-                               int b = a;
-                               Hello (5);
-                       };
-               };
-               Foo bar = delegate {
-                       int c = i;
-                       Hello (6);
-                       return delegate {
-                               int d = i;
-                               Hello (7);
-                       };
-               };
-               Simple simple = foo ();
-               simple ();
-       }
-
-       static void Main ()
-       {
-               X x = new X ();
-               x.Test (3);
-       }
-}