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

test-285.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 133f9daf1388711d771727e3bbd2e76bc1756936 (plain)
1
2
3
4
5
6
7
8
9
10
11
class T {
	static int Main ()
	{
		switch (1) {
		case 1:
			return 0;
		default:
			break;
		}
	}
}