eol
[mcs.git] / tests / test-iter-12.cs
blob88e102ed0894548504eb037559274d8b339bf2bb
1 class X {
2 System.Collections.IEnumerable a ()
4 lock (this){
5 yield return "a";
6 yield return "b";
10 static void Main () {}