[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-debug-21.cs
blob76727b516340ba1f3267dfb48a26000aaa82e43b
1 using System;
2 using System.Collections.Generic;
4 class C
6 IEnumerable<int> Test ()
8 Console.WriteLine ("init");
9 try
11 yield return 1;
13 finally
15 Console.WriteLine ("aa");
18 yield return 2;
21 public static void Main ()