Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-896.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4336bf731417b9503ded027cf1536874525cfd8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

class Program
{
	public static void Main ()
	{
		goto L1;
		int z;
	L1: 
		z = 3;
		Console.WriteLine (z);
	}
}