**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs8206.cs
blob0992eb88f43c566e6e3d76badb7c28a4c33061c4
1 // cs8206.cs: Return not allowed in iterator method
2 // Line: 11
3 using System.Collections;
5 class X {
6 IEnumerator MyEnumerator (int a)
8 if (a == 0)
9 yield return 1;
10 else
11 return 2;
14 static void Main ()