summaryrefslogtreecommitdiff
path: root/mcs/tests/test-iter-12.cs
blob: 213baa77140d89a0419b8744df3f87cbd18010c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
class X {
	System.Collections.IEnumerable a ()
	{
		lock (this){
			yield return "a";
			yield return "b";
		}
	}

	public static void Main () {}
}