summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-8.cs
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;
		}
	}
}