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

test-anon-88.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e13d8acee54e073883406e89d12f82f1e2ebb968 (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
31
32
using System;

class C
{
	public delegate void D ();

	public static int Main ()
	{
		new C ().Test ();
		return 0;
	}

	void Test ()
	{
		int l1 = 0;

		if (l1 == 0) {
			int l2 = 1;
			if (l2 == 1) {
				D dd = delegate {
					int l3 = 2;
					D d2 = delegate { int x = l1; int z = l3; };
					D d22 = delegate { int x = 1; };
				};
			}

			D d3 = delegate { int y = l2; };
		}

		D d1 = delegate { int x = l1; };
	}
}