Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs1622-4.cs
blob8fa41c1a08fe46cf2c1d252a48d89e54e9ef825c
1 // CS1622: Cannot return a value from iterators. Use the yield return statement to return a value, or yield break to end the iteration
2 // Line: 21
4 using System.Collections.Generic;
6 namespace McsDiff
8 class MyObj
12 class MainClass
14 protected static IEnumerable<MyObj> GetStuff ()
16 yield return null;
18 try {
20 catch {
21 return true;