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: 4dc9d547e32708ec2c7490eb5ef05be3f6b5773f (plain)
1
2
3
4
5
6
7
8
9
// cs0136.cs: local variable j can not be declared, because there is something with that name already
// Line: 5
class X {
	public static void Bar (int j, params int [] args)
	{
		foreach (int j in args)
			;
	}
}