From f394a1e0de03ab218cec06d4f1f934cc7be7556f Mon Sep 17 00:00:00 2001 From: Martin Baulig Date: Wed, 4 Oct 2006 20:51:03 +0000 Subject: [PATCH] New test. svn path=/branches/martin/anonymous-methods/work/; revision=66263 --- mcs/work/test-martin-13.cs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 mcs/work/test-martin-13.cs diff --git a/mcs/work/test-martin-13.cs b/mcs/work/test-martin-13.cs deleted file mode 100644 index 6bd016b1994..00000000000 --- a/mcs/work/test-martin-13.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; - -public delegate void Foo (); - -public class Test -{ - public void World (S s, T t) - where S : X - where T : S - { } - - public void Hello (U u, V v) - where U : X - where V : U - { - Foo foo = delegate { - World (u, v); - }; - } -} - -public class X -{ - public static void Main () - { - X x = new X (); - Test test = new Test (); - test.Hello (x, x); - } -} -- 2.25.1