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

cs1523.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fda07fd98f65bd54566835f16c73cf088fd4b118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1523: case or default must precede code in switch statement
// Line: 11

class X {

	static void Main ()
	{
		int i = 0;

		switch (i){
			i = 4;
		}
	}
}