Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-515.cs
1 class X {
2         public static void Main ()
3         {
4                 int i = 0;
5                 goto a;
6         b:
7                 if (++ i > 1)
8                         throw new System.Exception ("infloop!!!");
9                 return;
10         a:
11                 goto b;
12         }
13 }