eol
[mcs.git] / tests / test-515.cs
blobce0178d1b7cf51af68b133e17a882a3148fd47e2
1 class X {
2 static void Main ()
4 int i = 0;
5 goto a;
6 b:
7 if (++ i > 1)
8 throw new System.Exception ("infloop!!!");
9 return;
11 goto b;