[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-anon-112.cs
blob99c67adcd9b88b6ba7949ae7dd75cf3807097813
1 using System;
3 public delegate void Foo ();
5 public class World<T>
7 public void Hello<U> (U u)
8 { }
10 public void Test (T t)
12 Hello (t);
13 Foo foo = delegate {
14 Hello (t);
19 class X
21 public static void Main ()
23 World<X> world = new World<X> ();
24 world.Test (new X ());