[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-anon-03.cs
blob5be25e62212cee438e764f460d2e9bef08aa8c9d
1 //
2 // Simple variable capturing
3 //
4 using System;
6 delegate void S ();
8 class X {
9 public static void Main ()
11 int a = 1;
12 S b = delegate {
13 a = 2;
15 b ();
16 Console.WriteLine ("Back, got " + a);