summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0136-5.cs
blob: d8ec116af0e0970534304b7c1b30170e867dd801 (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', which is already used in a `child' scope to denote something else
// Line: 9
class X {
	void b ()
	{
		{
			string i;
		}
		int i;
	}
}