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

cs0158-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d383c12e6ffa5a44f3b9fa68196929f73be1e9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// CS0158: The label `Foo' shadows another label by the same name in a contained scope
// Line: 17
using System;

public delegate void Hello (Test test);

public class Test
{
	public void Whatever ()
	{ }

	static void RunIt (Test t)
	{
	Foo:
		Hello hello = delegate (Test test) {
			Hello hello2 = delegate (Test test2) {
				Foo:
				test2.Whatever ();
			};
			hello2 (test);
		};
		hello (t);
	}

	static void Main ()
	{
		Test t = new Test ();
		RunIt (t);
	}
}