codeowners update
[mono.git] / mcs / tests / test-anon-112.cs
1 using System;
2
3 public delegate void Foo ();
4
5 public class World<T>
6 {
7         public void Hello<U> (U u)
8         { }
9
10         public void Test (T t)
11         {
12                 Hello (t);
13                 Foo foo = delegate {
14                         Hello (t);
15                 };
16         }
17 }
18
19 class X
20 {
21         public static void Main ()
22         {
23                 World<X> world = new World<X> ();
24                 world.Test (new X ());
25         }
26 }