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

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

diff --git a/mcs/work/test-martin-5.cs b/mcs/work/test-martin-5.cs
deleted file mode 100755 (executable)
index 432501e..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-
-public delegate void Foo<V> (V v);
-
-public delegate void Bar<W> (W w);
-
-
-class Test<T>
-{
-       public static void Hello<S> (T t, S s)
-       {
-               Foo<long> foo = delegate (long r) {
-                       Console.WriteLine (r);
-                       Bar<T> bar = delegate (T x) {
-                               Console.WriteLine (r);
-                               Console.WriteLine (t);
-                               Console.WriteLine (s);
-                               Console.WriteLine (x);
-                       };
-                       bar (t);
-               };
-               foo (5);
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Test<string>.Hello ("World", 3.1415F);
-       }
-}