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

cs1525-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a87c0fc91eba84fd746c3a73f543c71a27d80602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1525: Unexpected symbol `i', expecting `}', `case', or `default:'
// Line: 11

class X {

	static void Main ()
	{
		int i = 0;

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