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

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

diff --git a/mcs/work/test-martin-16.cs b/mcs/work/test-martin-16.cs
deleted file mode 100644 (file)
index 283fd12..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-
-public delegate void Foo ();
-
-public class World
-{
-       public void Hello (long a)
-       { }
-
-       public void Test (int t)
-       {
-               Hello (t);
-               int u = 2 * t;
-               Foo foo = delegate {
-                       Hello (u);
-               };
-               foo ();
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               World world = new World ();
-               world.Test (5);
-       }
-}