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

cs0136-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48219385e391ed446ee988c188fad0ba2dd87de0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0136: 'y' has a different meaning later in the block
// Line: 8

class X
{
	static int y;
	static void Main () {
		y = 10;
		int y = 5;
	}
}