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