[w32file] Remove dead code
[mono.git] / mcs / errors / cs1631.cs
1 // CS1631: Cannot yield a value in the body of a catch clause
2 // Line: 13
3 using System;
4 using System.Collections;
5
6 class X
7 {
8         public static IEnumerable Test (int a)
9         {
10                 try {
11                         ;
12                 } catch {
13                         yield return 0;
14                 }
15         }
16
17         static void Main ()
18         {
19                 IEnumerable a = Test (3);
20                 Console.WriteLine (a);
21         }
22 }