2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1625-3.cs
blobf1bb5daa8dca728047fd470dd42ba1f18689bb97
1 // CS1625: Cannot yield in the body of a finally clause
2 // Line: 13
3 using System;
4 using System.Collections;
6 class X
8 public static IEnumerable Test (int a)
10 try {
12 } finally {
13 yield break;
17 static void Main ()
19 IEnumerable a = Test (3);
20 Console.WriteLine (a);