[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1627.cs
blob61a418f751ee271a46783d0500d7d3c96ba5799f
1 // CS01627: Expression expected after yield return
2 // Line: 10
4 using System.Collections;
6 class C: IEnumerable
8 public IEnumerator GetEnumerator ()
10 yield return;