Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-iter-17.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class Test
5 {
6         public IEnumerable<int> TestMethod ()
7         {
8                 try {
9
10                 } catch (Exception ex) {
11                         throw;
12                 }
13                 yield break;
14         }
15
16         public static void Main ()
17         {
18         }
19 }