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

cs1656-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82b75aaf60dcdc94a303ad0b6958b75904d9678a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1656.cs: Cannot assign to 'i' because it is a 'foreach iteration variable'
// line: 9

class X {

	static void Main ()
	{
		foreach (int i in new int[] { 2, 3 }) {
		    i = 4;
		}
	}
}