Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-503.cs
1 // Compiler options: -warnaserror
2
3 class Foo {
4         public static int Main ()
5         {
6                 for (;;) {
7                         try {
8                                 break;
9                         } catch {
10                                 continue;
11                         }
12                 }
13                 return 0;
14         }
15 }