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: 09a3d042f99b156f42b4853c7a46dd2fcd0fbb99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0128: 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;
	}
}