[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-anon-83.cs
blob879c2c899cd426ca27680bf46e8fb1722bc1220e
1 using System;
3 public class C
5 public event EventHandler MyDelegate = delegate { };
7 internal void DoSomething (bool bValue)
9 if (!bValue) {
10 // It has to be here to check we are closing correctly top-block
11 return;
15 public static void Main ()