2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1622.cs
blob563889bd59b4298f2e496cb00728b8763ed9fbcd
1 // cs1622.cs: Cannot return a value from iterators. Use the yield return statement to return a value, or yield break to end the iteration
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 null;
14 static void Main ()