summaryrefslogtreecommitdiff
path: root/mcs/tests/test-iter-13.cs
blob: 6a16db89f52c76b0e4beb2b0f3226993621ee773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections;

class Test
{
	class Yp
	{
		public IEnumerable fail ()
		{
			return null;
		}
	}

	static Yp YP = new Yp ();

	public static void Main ()
	{

	}

	public static IEnumerable syntax_error (object _Message, object _List)
	{
		{
			yield break;
		}

		foreach (bool l1 in YP.fail ()) {
			yield return false;
		}
	}
}