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

cs0136-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02104ddf186c9697e4e0db5a288a99bb65c74997 (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: 9
class X {
	void b ()
	{
		{
			string i;
		}
		int i;
	}
}