Updated project.
[mono.git] / mcs / errors / cs8206.cs
1 // cs8206.cs: Return not allowed in iterator method
2 // Line:
3 using System.Collections;
4
5 class X {
6         IEnumerator MyEnumerator (int a)
7         {
8                 if (a == 0)
9                         yield 1;
10                 else
11                         return 2;
12         }
13
14         static void Main ()
15         {
16         }
17 }