Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-874.cs
1 using System;
2
3 class X
4 {
5         public static void Main ()
6         {
7                 int a;
8                 goto X;
9         A:
10                 Console.WriteLine (a);
11                 goto Y;
12         X:
13                 a = 1;
14                 goto A;
15         Y:
16                 return;
17         }
18 }