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

cs0136.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3927a72616b95adc48190b289c82858d00b8149b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0136: A local variable named 'i' cannot be declared in this scope because it would give a different meaning to 'i'
// Line: 8
class X {
	void b ()
	{
		int i;
		{
			string i;
		}
	}
}