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

cs0128.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d472c0b443dea7f5a26c50caf3f81a2ecafbff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0128.cs: A local variable named `x' is already defined in this scope
// Line:

class x {
	static int y ()
	{
		int x = 1;
		int x = 2;

		return x + x;
	}
}