summaryrefslogtreecommitdiff
path: root/mcs/tests/test-874.cs
blob: b8f52f0f988b0943d019fc97b2239946fe9f1caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

class X
{
	public static void Main ()
	{
		int a;
		goto X;
	A:
		Console.WriteLine (a);
		goto Y;
	X:
		a = 1;
		goto A;
	Y:
		return;
	}
}