(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1631.cs
blob85d99028f7371c1a2d710fb193f34f5a589f8a62
1 // CS1631: Cannot yield in the body of a catch clause
2 // Line: 13
3 using System;
4 using System.Collections;
6 class X
8 public static IEnumerable Test (int a)
10 try {
12 } catch {
13 yield return 0;
17 static void Main ()
19 IEnumerable a = Test (3);
20 Console.WriteLine (a);