Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-iter-12.cs
1 class X {
2         System.Collections.IEnumerable a ()
3         {
4                 lock (this){
5                         yield return "a";
6                         yield return "b";
7                 }
8         }
9
10         public static void Main () {}
11 }