New test.
authorMartin Baulig <martin@novell.com>
Wed, 4 Oct 2006 20:49:32 +0000 (20:49 -0000)
committerMartin Baulig <martin@novell.com>
Wed, 4 Oct 2006 20:49:32 +0000 (20:49 -0000)
svn path=/trunk/mcs/; revision=66259

1  2 
mcs/tests/gtest-anon-2.cs

index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..bf6bbb317d2533d84fe60b4aaab0fb8e60f2c561
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,34 @@@
++using System;
++
++public delegate void Simple ();
++
++public delegate Simple Foo ();
++
++class X
++{
++      public void Hello<U> (U u)
++      { }
++
++      public void Test<T> (T t)
++      {
++              T u = t;
++              Hello (u);
++              Foo foo = delegate {
++                      T v = u;
++                      Hello (u);
++                      return delegate {
++                              Hello (u);
++                              Hello (v);
++                      };
++              };
++              Simple simple = foo ();
++              simple ();
++              Hello (u);
++      }
++
++      static void Main ()
++      {
++              X x = new X ();
++              x.Test (3);
++      }
++}