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

cs0136-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63fb0cced54761c29f19aa5383b0068924dc972c (plain)
1
2
3
4
5
6
7
8
9
10
// CS0136: A local variable named `j' cannot be declared in this scope because it would give a different meaning to `j', which is already used in a `parent or current' scope to denote something else
// Line: 7

class X {
	public static void Bar (int j, params int [] args)
	{
		foreach (int j in args)
			;
	}
}