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

test-499.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6789aa4a3a528d2da62d14741ef544bc46f55e1 (plain)
1
2
3
4
5
6
7
8
9
10
class X {
	static void Main ()
	{
		ulong x = 1;
		switch (x) {
		case 0:
			break;
		}
	}
}