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

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

public class Test
{
	public static void Main ()
	{
		goto end;
		int a;
		Console.WriteLine ("unreachable");
	end:
		Console.WriteLine ("end");
	}
}