Merge pull request #4935 from lambdageek/dev-handles-may
[mono.git] / mcs / tests / test-debug-32.cs
1 using System.Collections.Generic;
2
3 class X
4 {
5         internal static IEnumerable<int> EnumerateKind ()
6         {
7                 yield return 1;
8
9                 int h = 3;
10                 try {
11                         yield return h;
12                 } finally {
13                         if (h != 1) {
14                         }
15                 }
16         }
17
18         public static void Main ()
19         {
20         }
21 }