2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1621.cs
bloba1d34ea2fb2a918139f0c03778250ee901586b77
1 // cs01621.cs: The yield statement cannot be used inside anonymous method blocks
2 // Line: 13
4 using System.Collections;
6 delegate object D ();
8 class C: IEnumerable
10 public IEnumerator GetEnumerator ()
12 D d = delegate {
13 yield return this;