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

test-872.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e501d330cedd4aa79378095cd88e8aad0841f44f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

class X
{
	public static void Main ()
	{
		int x = 1;
		switch (x) {
		case 1:
			try {
				goto case 6;
			} catch {
			}
			break;
		case 6:
			try {
				goto default;
			} catch {
			}
			break;
		default:
			break;
		}
	}
}