Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-debug-21.cs
1 using System;
2 using System.Collections.Generic;
3
4 class C
5 {
6         IEnumerable<int> Test ()
7         {
8                 Console.WriteLine ("init");
9                 try
10                 {
11                         yield return 1;
12                 }
13                 finally
14                 {
15                         Console.WriteLine ("aa");
16                 }
17                 
18                 yield return 2;
19         }
20
21         public static void Main ()
22         {
23         }
24 }