[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1626.cs
blob1165409b574fa9451e659d606ca099b1ade79829
1 // CS1626: 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 {