[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-anon-108.cs
blob1f531b1c8e07dffd7f51a8cbbe90cd79f16eb18a
1 using System;
2 using System.Collections.Generic;
4 delegate int Foo ();
6 class X
8 public static void Main ()
10 Test ("Hello World", 8);
13 public static void Test<R> (R r, int a)
15 for (int b = a; b > 0; b--) {
16 R s = r;
17 Foo foo = delegate {
18 Console.WriteLine (b);
19 Console.WriteLine (s);
20 return 3;
22 a -= foo ();