2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1626.cs
blob29f4a8ff22b9475e11aac75bcffdd5bf6851e5bc
1 // cs01626.cs: Cannot yield a value in the body of a try block with a catch clause
2 // Line: 11
4 using System.Collections;
6 class C: IEnumerable
8 public IEnumerator GetEnumerator ()
10 try {
11 yield return this;
13 catch {