Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / test-debug-32.cs
blobba52a104c11e37921c153016b68ff6b7f47a6105
1 using System.Collections.Generic;
3 class X
5 internal static IEnumerable<int> EnumerateKind ()
7 yield return 1;
9 int h = 3;
10 try {
11 yield return h;
12 } finally {
13 if (h != 1) {
18 public static void Main ()